-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
52 lines (51 loc) · 824 Bytes
/
main.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
let myST = new SplitText('#msg', {type: 'words,chars'})
let tl = gsap.timeline({
repeat: -1
});
let duration = 0.65;
let stagger = 0.15;
tl.to(myST.chars, {
duration: duration,
'--wght': 900,
stagger: {
each: stagger,
repeat: -1,
repeatDelay: 2.6,
yoyo: true
},
ease: 'sine.inOut'
})
.to(myST.chars, {
duration: duration,
'--ESHP': 3,
color: '#F2F7F2',
stagger: {
each: stagger,
repeat: -1,
repeatDelay: 2.6,
yoyo: true
},
ease: 'sine.inOut'
}, 0)
.to(myST.chars, {
duration: duration,
'--wght': 20,
stagger: {
each: stagger,
repeatDelay: 2.6,
repeat: -1,
yoyo: true
},
ease: 'sine.inOut'
}, 1.3)
.to(myST.chars, {
duration: duration,
'--ESHP': 2,
stagger: {
each: stagger,
repeatDelay: 2.6,
repeat: -1,
yoyo: true
},
ease: 'sine.inOut'
}, 1.3)