-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
42 lines (40 loc) · 974 Bytes
/
app.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
let controller = new ScrollMagic.Controller();
let timeline = new TimelineMax();
timeline //setting timeline -> how elements should behave
.to('.rock', 3, {
y: -300
})
.to('.girl', 3, {
y: -200,
}, '-=3')
.fromTo('.bg1', 3, {
y: -50
}, {
y: 0
}, "-=3")
.to('.content', 3, {
top: '0%'
}, "-=3")
.fromTo(".content-images", 10, {
opacity:0,
scale: 0.1
}, {
opacity:1,
scale: 1,
})
.fromTo(".text", {
x: -1600,
opacity:0,
}, {
x: 0,
opacity:1,
duration: 3
}, "-=3");
let scene = new ScrollMagic.Scene({
triggerElement: 'section', //trigger scene when reach section
duration: '100%', //duration
triggerHook: 0, //when to trigger scene (0 -> instanst on scrolling, 1 -> when we reach end of the section)
})
.setTween(timeline)
.setPin("section")
.addTo(controller);