-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathmain.js
More file actions
236 lines (216 loc) · 5.84 KB
/
Copy pathmain.js
File metadata and controls
236 lines (216 loc) · 5.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
// Wait until the full DOM is loaded before running scripts
window.addEventListener("DOMContentLoaded", () => {
// Register ScrollTrigger plugin from GSAP
gsap.registerPlugin(ScrollTrigger);
const header = document.querySelector("header");
// ==========================
// Mobile Menu Toggle
// ==========================
// Toggles mobile nav visibility on hamburger click
function toggleMobileNav() {
document.getElementById("mobileMenu").classList.toggle("show");
}
// Expose function globally to use in inline HTML
window.toggleMobileNav = toggleMobileNav;
// ==========================
// Initial Page Load Animations
// ==========================
function runInitialAnimations() {
// Create a timeline with default easing
const onLoadTl = gsap.timeline({ defaults: { ease: "power2.out" } });
onLoadTl
// Animate header border width expansion
.to(
"header",
{
"--border-width": "100%",
duration: 3,
},
0
)
// Slide in desktop nav links & sidebar icons from above
.from(
".desktop-nav a, .social-sidebar a",
{
y: -100,
opacity: 0,
duration: 0.8,
stagger: 0.2,
ease: "power3.out",
},
0
)
// Animate sidebar border height
.to(
".social-sidebar",
{
"--border-height": "100%",
duration: 10,
},
0
)
// Fade in hero heading
.to(
".hero-content h1",
{
opacity: 1,
duration: 1,
},
0
)
// Animate text stroke to solid color
.to(
".hero-content h1",
{
delay: 0.5,
duration: 1.2,
color: "var(--sienna)",
"-webkit-text-stroke": "0px var(--sienna)",
},
0
)
// Slide in each line of the heading from the right
.from(
".hero-content .line",
{
x: 100,
delay: 1,
opacity: 0,
duration: 0.8,
stagger: 0.2,
ease: "power3.out",
},
0
)
// Reveal the bottle wrapper
.to(
".hero-bottle-wrapper",
{
opacity: 1,
scale: 1,
delay: 1.5,
duration: 1.3,
ease: "power3.out",
},
0
)
// Pop-in stamp image with scaling
.to(
".hero-stamp",
{
opacity: 1,
scale: 1,
delay: 2,
duration: 0.2,
ease: "back.out(3)",
},
0
)
// Subtle vibration/bounce effect on the stamp
.to(
".hero-stamp",
{
y: "+=5",
x: "-=3",
repeat: 2,
yoyo: true,
duration: 0.05,
ease: "power1.inOut",
},
0
);
}
// ==========================
// Reusable Scroll-Based Animation Setup
// ==========================
function pinAndAnimate({
trigger,
endTrigger,
pin,
animations,
markers = false,
headerOffset = 0,
}) {
// Define scroll end position with header offset
const end = `top top+=${headerOffset}`;
// Create a GSAP timeline connected to ScrollTrigger
const tl = gsap.timeline({
scrollTrigger: {
trigger,
start: `top top+=${headerOffset}`,
endTrigger,
end,
scrub: true,
pin,
pinSpacing: false,
markers: markers, // for debugging
invalidateOnRefresh: true, // ensures recalculation on resize
},
});
// Loop through each animation object
animations.forEach(({ target, vars, position = 0 }) => {
tl.to(target, vars, position);
});
}
// ==========================
// ScrollTrigger Configurations for Desktop & Mobile
// ==========================
function setupScrollAnimations() {
const headerOffset = header.offsetHeight - 1;
// Use matchMedia to handle responsive behaviors
ScrollTrigger.matchMedia({
// Desktop scroll animations
"(min-width: 769px)": function () {
// 1. Bottle animates on scroll from hero to intro
pinAndAnimate({
trigger: ".hero",
endTrigger: ".section-intro",
pin: ".hero-bottle-wrapper",
animations: [
{ target: ".hero-bottle", vars: { rotate: 0, scale: 0.8 } },
],
headerOffset,
});
// 2. Bottle shifts right during the intro section
pinAndAnimate({
trigger: ".section-intro",
endTrigger: ".timeline-entry:nth-child(even)",
pin: ".hero-bottle-wrapper",
animations: [
{ target: ".hero-bottle", vars: { rotate: 10, scale: 0.7 } },
{ target: ".hero-bottle-wrapper", vars: { x: "30%" } },
],
markers: false,
headerOffset,
});
// 3. Bottle shifts left during the first timeline entry
pinAndAnimate({
trigger: ".timeline-entry:nth-child(even)",
endTrigger: ".timeline-entry:nth-child(odd)",
pin: ".hero-bottle-wrapper",
animations: [
{ target: ".hero-bottle", vars: { rotate: -10, scale: 0.7 } },
{ target: ".hero-bottle-wrapper", vars: { x: "-25%" } },
],
markers: false,
headerOffset,
});
},
// Mobile fallback animation (no scroll-based logic)
"(max-width: 768px)": function () {
gsap.to(".hero-bottle-wrapper", {
opacity: 1,
duration: 1,
delay: 0.5,
});
},
});
}
// ==========================
// Init Everything on Load
// ==========================
runInitialAnimations(); // Load-in animations
setupScrollAnimations(); // Scroll-based animations
// Final recalculation for all ScrollTriggers
ScrollTrigger.refresh();
});