-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
58 lines (49 loc) · 1.09 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
TweenMax.from(".copyright", 3, {
delay: 2,
opacity: 0,
y: 20,
ease: Expo.easeInOut
});
TweenMax.from("footer", 3, {
delay: 3,
opacity: 0,
y: 20,
ease: Expo.easeInOut
});
TweenMax.from(".header", 3, {
delay: 1,
opacity:0,
y: 80,
ease: Expo.easeInOut
});
TweenMax.from("header", 3, {
delay: 2,
opacity:0,
y: 20,
ease: Expo.easeInOut
});
TweenMax.from("#btn", 3, {
delay: 2,
opacity:0,
y: 5,
ease: Expo.easeInOut
});
TweenMax.from("#shareLink", 3, {
delay: 2,
opacity:0,
y: 5,
ease: Expo.easeInOut
});
TweenMax.from(".container", 3, {
delay: 2,
opacity:0,
y: 20,
ease: Expo.easeInOut
});
var t1 = new TimelineMax();
t1.to(".covid19", 2, {
delay: 0,
opacity: 0.2,
// x: 300,
ease: Expo.easeInOut
});