-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscript.js
More file actions
214 lines (189 loc) · 4.57 KB
/
Copy pathscript.js
File metadata and controls
214 lines (189 loc) · 4.57 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
/* ===( Creative 💌 : 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 tll = gsap.timeline()
tll
.to("#loader",{
top:"-100%",
duration:1,
delay:0.5,
ease: "power3.out",
})
.to("#center",{
clipPath: "polygon(0 100%, 100% 100%, 100% 0%, 0 0%)",
})
.from("#navbar",{
y:"-100%"
})
}
loader()
function page1(){
var tl = gsap.timeline({
scrollTrigger:{
trigger:"#page1",
scroller:"#main",
start:"top -25%",
end:"top -200%",
scrub:1,
pin:true
}
})
tl
.to("#center img",{
transform: "scale(1)"
},"a")
.to("#center",{
scale:.8
},"a")
.to("#head-1",{
top:"-100%"
},"a")
.to("#left",{
transform:"translateY(-7.8%)"
},"b")
.to("#right",{
transform:"translateY(5%)"
},"b")
}
page1()
function page2(){
var tl2 = gsap.timeline({
scrollTrigger:{
trigger:"#page2",
scroller:"#main",
start:"top 30%",
end:"top -20%",
scrub:3,
}
})
tl2
.from("#cue",{
x:600
},"a")
.from("#page2 #the",{
x:-500,
delay:0.1
},"a")
.from("#page2>h1",{
x:400,
delay:0.3
},"a")
var clutter = ""
document.querySelector("#page2 #text h2").textContent.split(" ").forEach(function(word){
clutter += ` <span>${word}</span>`
})
document.querySelector("#page2 #text h2").innerHTML = clutter
gsap.to("#page2 #text h2 span",{
color:"#FF3227",
stagger:0.2,
scrollTrigger:{
trigger:"#text",
scroller:"#main",
start:"top 50%",
end:"top 10%",
scrub:1,
}
})
}
page2()
gsap.from("#page3 h1",{
y:"100%",
stagger:{
amount:0.5
},
scrollTrigger:{
trigger:"#page3",
scroller:"#main",
start:"top 50%",
end:"top 20%",
scrub:1,
}
})
gsap.to("#page4 #wraper",{
transform:"translateX(-200%)",
scrollTrigger:{
trigger:"#page4",
scroller:"#main",
start:"top top",
end:"top -300%",
scrub:1,
pin:true,
}
})
gsap.to("#page6 #ig2",{
clipPath: "polygon(0 0, 100% 0, 100% 100%, 0 100%)",
ease: "power4.out",
duration:2,
scrollTrigger:{
trigger:"#page6",
scroller:"#main",
start:"top 50%",
end:"top 30%",
scrub:1
}
})
gsap.to("#page6 #ig1",{
clipPath: "polygon(0 0, 100% 0, 100% 100%, 0 100%)",
ease: "power4.out",
duration:2,
scrollTrigger:{
trigger:"#page6 #ig1",
scroller:"#main",
start:"top 50%",
end:"top 30%",
scrub:1
}
})
function page7(){
var tl7 = gsap.timeline({
scrollTrigger:{
trigger:"#page7",
scroller:"#main",
start:"top 50%",
end:"top -60%",
scrub:1,
}
})
tl7
.to("#i1",{
x:-10
},"a")
.to("#one",{
x:350,
delay:0.5
},"a")
.to("#two",{
x:350,
delay:0.7
},"a")
.to("#three",{
x:-300,
delay:0.8
},"a")
}
page7()