-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
57 lines (57 loc) · 1.05 KB
/
Copy pathapp.js
File metadata and controls
57 lines (57 loc) · 1.05 KB
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
gsap.from(".hero, .hero-two", { duration: 2, x: "-100vw", ease: "power2.out" });
gsap.from(".coming-soon, .coming-soon-two", {
duration: 2,
opacity: 0,
delay: 3.5,
ease: "bounce.in",
stagger: 2,
});
gsap.from(".desc, .desc-two", {
duration: 2,
x: "100vw",
delay: 2,
ease: "power2.out",
});
gsap.from(".form, .form-two", {
duration: 2,
x: "-100vw",
delay: 2,
ease: "power2.out",
});
gsap.from(".notify, .notify-two", {
duration: 2,
opacity: 0,
delay: 2,
ease: "bounce.in",
stagger: 2,
});
gsap.from(".social-flex-two", {
duration: 2,
x: "100vw",
delay: 2,
ease: "power4.out",
});
gsap.from(".socials a:nth-child(1), .socials-two a:nth-child(1) ", {
duration: 2,
x: "-100vw",
delay: 2,
ease: "power4.out",
});
gsap.from(".socials-two a:nth-child(2)", {
duration: 2,
x: "100vw",
delay: 2,
ease: "power4.out",
});
gsap.from(".socials-two a:nth-child(3)", {
duration: 2,
x: "-100vw",
delay: 2.5,
ease: "power4.out",
});
gsap.from(".top, .top-two", {
duration: 1,
y: "-500%",
ease: "bounce",
delay: 3.8,
});