-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
47 lines (42 loc) · 750 Bytes
/
script.js
File metadata and controls
47 lines (42 loc) · 750 Bytes
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
// First Color shade #F2E9E4
var tl = gsap.timeline({
scrollTrigger: {
trigger: "#two",
// markers: true,
start: "50% 0%",
end: "55% 0%",
scrub: 1,
duration: 1,
},
});
tl.to(".main", {
backgroundColor: "#55334A",
});
// Second Color shade #F2E9E4
var t2 = gsap.timeline({
scrollTrigger: {
trigger: "#three",
// markers: true,
start: "50% 0%",
end: "55% 0%",
scrub: 1,
duration: 1,
},
});
t2.to(".main", {
backgroundColor: "#242E24",
});
// Third Color shade #F2E9E4
var t2 = gsap.timeline({
scrollTrigger: {
trigger: "#four",
// markers: true,
start: "50% 0%",
end: "55% 0%",
scrub: 1,
duration: 1,
},
});
t2.to(".main", {
backgroundColor: "#ffffff",
});