-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.js
93 lines (85 loc) · 2.44 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
document.addEventListener("DOMContentLoaded", function () {
gsap.registerPlugin(ScrollTrigger);
// GSAP animations using ScrollTrigger
gsap.to(".hero", {
scrollTrigger: {
trigger: ".hero",
start: "top center",
end: "bottom center",
scrub: true,
},
y: -200,
ease: "power2.inOut",
});
gsap.to(".speakerlist", {
scrollTrigger: {
trigger: ".speakerlist",
start: "top center",
end: "bottom center",
scrub: true,
},
y: -100,
ease: "power2.inOut",
});
gsap.to(".shops", {
scrollTrigger: {
trigger: ".shops",
start: "top center",
end: "bottom center",
scrub: true,
},
y: -50,
ease: "power2.inOut",
});
gsap.to(".price-cards", {
scrollTrigger: {
trigger: ".price-cards",
start: "top center",
end: "bottom center",
scrub: true,
},
y: -50,
ease: "power2.inOut",
});
// gsap.to(".footer", {
// scrollTrigger: {
// trigger: ".footer",
// start: "top center",
// end: "bottom center",
// scrub: true
// },
// y: -100,
// ease: "power2.inOut"
// });
});
document.addEventListener("DOMContentLoaded", function () {
const toggleMenuIcons = document.querySelectorAll(".toggle-menu");
const closeMenuIcon = document.querySelector(".close-menu");
const openMenu = document.querySelector(".open-menu");
toggleMenuIcons.forEach((icon) => {
icon.addEventListener("click", function () {
if (openMenu.classList.contains("show")) {
openMenu.classList.remove("show");
setTimeout(() => {
openMenu.style.visibility = "hidden";
openMenu.style.opacity = "0";
}, 500);
} else {
openMenu.style.visibility = "visible";
openMenu.style.opacity = "1";
setTimeout(() => {
openMenu.classList.add("show");
}, 0);
}
});
});
closeMenuIcon.addEventListener("click", function () {
if (openMenu.classList.contains("show")) {
openMenu.classList.remove("show");
setTimeout(() => {
openMenu.style.visibility = "hidden";
openMenu.style.opacity = "0";
}, 500);
}
});
});