-
Notifications
You must be signed in to change notification settings - Fork 6
/
script-prizes-page.js
58 lines (54 loc) · 1.09 KB
/
script-prizes-page.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
// Prizes animation
gsap.from(".prizes-heading", {
scrollTrigger: {
trigger: ".prizes-heading",
toggleActions: "restart none none reverse"
},
duration: 1,
opacity: 0,
y: '2vw'
})
// Boxes animation
gsap.from(".first-box", {
scrollTrigger: {
trigger: ".first-box",
toggleActions: "restart none none reverse"
},
duration: 2,
opacity: 0,
ease: "back.out(10)",
y: '2vh',
})
gsap.from(".second-box", {
scrollTrigger: {
trigger: ".second-box",
toggleActions: "restart none none reverse"
},
duration: 2,
opacity: 0,
ease: "back.out(10)",
y: '2vh',
delay: 0.1
})
gsap.from(".third-box", {
scrollTrigger: {
trigger: ".third-box",
toggleActions: "restart none none reverse"
},
duration: 2,
opacity: 0,
ease: "back.out(10)",
y: '2vh',
delay: 0.2
})
gsap.from(".fourth-box", {
scrollTrigger: {
trigger: ".fourth-box",
toggleActions: "restart none none reverse"
},
duration: 2,
opacity: 0,
ease: "back.out(10)",
y: '2vh',
delay: 0.3
})