-
Notifications
You must be signed in to change notification settings - Fork 1
/
script.js
406 lines (371 loc) · 8.48 KB
/
script.js
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
/* ===( CODE AASHU )=== */
function loco(){
gsap.registerPlugin(ScrollTrigger);
// Using Locomotive Scroll from Locomotive https://github.com/locomotivemtl/locomotive-scroll
const locoScroll = new LocomotiveScroll({
el: document.querySelector("#main"),
smooth: true
});
// each time Locomotive Scroll updates, tell ScrollTrigger to update too (sync positioning)
locoScroll.on("scroll", ScrollTrigger.update);
// tell ScrollTrigger to use these proxy methods for the "#main" element since Locomotive Scroll is hijacking things
ScrollTrigger.scrollerProxy("#main", {
scrollTop(value) {
return arguments.length ? locoScroll.scrollTo(value, 0, 0) : locoScroll.scroll.instance.scroll.y;
}, // we don't have to define a scrollLeft because we're only scrolling vertically.
getBoundingClientRect() {
return {top: 0, left: 0, width: window.innerWidth, height: window.innerHeight};
},
// LocomotiveScroll handles things completely differently on mobile devices - it doesn't even transform the container at all! So to get the correct behavior and avoid jitters, we should pin things with position: fixed on mobile. We sense it by checking to see if there's a transform applied to the container (the LocomotiveScroll-controlled element).
pinType: document.querySelector("#main").style.transform ? "transform" : "fixed"
});
// each time the window updates, we should refresh ScrollTrigger and then update LocomotiveScroll.
ScrollTrigger.addEventListener("refresh", () => locoScroll.update());
// after everything is set up, refresh() ScrollTrigger and update LocomotiveScroll because padding may have been added for pinning, etc.
ScrollTrigger.refresh();
}
loco()
function loader() {
var tl1 = gsap.timeline({
})
tl1
.from("#ig6", {
scale: 0,
duration: 1
}, "a")
.from("#ig3", {
scale: 0,
delay: .2,
duration: 1
}, "a")
.from("#ig4", {
scale: 0,
delay: .4,
duration: 1
}, "a")
.from("#ig5", {
delay: .6,
scale: 0,
duration: 1
}, "a")
.from("#ig7", {
delay: .8,
scale: 0,
duration: 1
}, "a")
.from("#ig2", {
scale: 0,
delay: 1,
duration: 1
}, "a")
.from("#ig1", {
scale: 0,
delay: 1.2,
duration: 1
}, "a")
.from("#heading img", {
transform: "translateY(100%)",
delay: .7,
duration: .8
}, "a")
}
loader()
function pgOne() {
var tl = gsap.timeline({
scrollTrigger: {
trigger: "#page1",
scroller: "#main",
start: "top top",
end: "top -150%",
// markers:true,
scrub: 4,
pin: true
}
})
tl
.to("#ig1", {
x: "130%",
y: "155%",
}, "a")
.to("#ig2", {
x: "-80%",
y: "200%",
delay: .04,
}, "a")
.to("#ig3", {
x: "-70%",
y: "-140%",
delay: .06,
}, "a")
.to("#ig4", {
x: "140%",
y: "-150%",
delay: .10,
}, "a")
.to("#ig5", {
x: "110%",
y: "140%",
delay: .14,
}, "a")
.to("#ig6", {
x: "150%",
y: "-190%",
delay: .18,
}, "a")
.to("#ig7", {
x: "-80%",
y: "-180%",
delay: .23,
}, "a")
.to("#page1 h4", {
opacity: 0,
delay: .23,
}, "a")
}
pgOne()
function pgTwo(){
var tl = gsap.timeline({
scrollTrigger:{
trigger:"#page2",
scroller:"#main",
// markers:true,
start:"top 70%",
end:"top 55%",
scrub:2
}
})
tl
.from("#down #line1",{
width:"0%"
},"a")
.from("#down #line2",{
height:"0%"
},"a")
gsap.from("#page2 #line",{
height:"0%",
scrollTrigger:{
trigger:"#page2",
scroller:"#main",
// markers:true,
start:"top 10%",
end:"top -10%",
scrub:2
}
})
}
pgTwo()
function page3(){
var tl3 = gsap.timeline({
scrollTrigger:{
trigger:"#page3",
scroller:"#main",
// markers:true,
start:"top 80%",
end:"top 65%",
scrub:2
}
})
tl3
.from("#page3 #l1",{
width:"0%"
},"l")
.from("#page3 #line3-vt",{
height:"0%"
},"l")
gsap.from("#page3 #l2",{
width:"0%",
scrollTrigger:{
trigger:"#page3",
scroller:"#main",
// markers:true,
start:"bottom 90%",
end:"bottom 85%",
scrub:2
}
})
}
page3()
function eightAnime(){
gsap.to("#page4 img",{
scale:20,
rotate:90,
y:"-500%",
x:"40%",
scrollTrigger:{
trigger:"#page4",
scroller:"#main",
// markers:true,
start:"16% 0%",
end:"top -150%",
scrub:1,
pin:true
}
})
}
eightAnime()
function pg5(){
var tl5 = gsap.timeline({
scrollTrigger:{
trigger:"#page5",
scroller:"#main",
// markers:true,
start:"top 0%",
end:"top -300%",
scrub:2,
pin:true
}
})
tl5
.to("#pt1",{
clipPath: "ppolygon(0 100%, 100% 100%, 100% 100%, 0 100%)",
},"a")
.to("#pt2",{
clipPath: "polygon(0 100%, 100% 100%, 100% 0%, 0 0%)",
},"a")
.to("#pt3",{
clipPath: "polygon(0 100%, 100% 100%, 100% 0%, 0 0%)",
})
}
pg5()
function pg6(){
var tl6 = gsap.timeline({
scrollTrigger:{
trigger:"#page6",
scroller:"#main",
// markers:true,
start:"top 65%",
end:"top 40%",
scrub:2,
}
})
tl6
.from("#line6-vt",{
height:"0"
},"h")
.from("#line6",{
width:"0"
},"h")
.from("#line6-h",{
width:"0",
},"h")
var tl7 = gsap.timeline({
scrollTrigger:{
trigger:"#elem3",
scroller:"body",
// markers:true,
start:"top 80%",
end:"top 70%",
scrub:2,
}
})
tl7
.from("#linee",{
width:"0",
})
.from("#para p",{
transform:"translateY(100%)"
})
}
pg6()
var over = document.querySelectorAll("#page9 .over")
over.forEach(function(ov){
gsap.to(ov,{
width:"0%",
scrollTrigger:{
trigger:ov,
scroller:"#main",
// markers:true,
start:"top 45%",
end:"top -20%",
scrub:true
}
})
})
var tl13 = gsap.timeline({
scrollTrigger:{
trigger:"#page13",
scroller:"#main",
// markers:true,
start:"top 45%",
end:"top -30%",
scrub:2
}
})
tl13
.from("#page13 #one",{
y:"25%"
},"a")
.from("#page13 #two",{
y:"45%",
},"a")
.from("#page13 #three",{
y:"36%"
},"a")
var tl10 = gsap.timeline({
scrollTrigger:{
trigger:"#page10",
scroller:"#main",
// markers:true,
start:"top 70%",
end:"top 40%",
scrub:2,
}
})
tl10
.from("#li2",{
height:"0"
},"h")
.from("#li1",{
width:"0"
},"h")
var tl14 = gsap.timeline({
scrollTrigger:{
trigger:"#page14",
scroller:"#main",
// markers:true,
start:"top 30%",
end:"top 10%",
scrub:2,
}
})
tl14
.from("#line14-v",{
height:"0"
},"h")
.from("#line14",{
width:"0"
},"h")
var tll = gsap.timeline({
scrollTrigger:{
trigger:"#footer",
scroller:"#main",
// markers:true,
start:"top 80%",
end:"top 60%",
scrub:2,
}
})
tll
.from("#fl",{
height:"0"
},"h")
var clutter =""
document.querySelector("#footer h1").textContent.split("").forEach(function(letter){
clutter += `<span>${letter}</span>`
})
document.querySelector("#footer h1").innerHTML = clutter
var tle = gsap.timeline({
scrollTrigger:{
trigger:"#foot",
scroller:"#main",
// markers:true,
start:"top 60%",
end:"top 40%",
scrub:2,
}
})
tle
.from("#foot h1 span",{
y:"-100%",
stagger:-0.2
})