-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathscript.js
335 lines (307 loc) · 9.4 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
const hamburger = document.querySelector(".hamburger");
const overlay = document.querySelector(".nav-overlay");
const closeBtn = document.querySelector(".close-btn");
const overlayNav = document.querySelector(".overlay-nav");
hamburger.addEventListener("click", () => {
overlay.style.width = "100%";
overlay.style.opacity = "1";
overlayNav.style.width = "20%";
gsap.from(".overlay-nav a", {
x: 120,
opacity: 0,
stagger: 0.2,
duration: 0.5,
delay: 0.5,
});
gsap.from(".overlay-bottom ul li", {
x: 120,
opacity: 0,
stagger: 0.2,
duration: 0.5,
delay: 0.5,
});
});
closeBtn.addEventListener("click", () => {
overlay.style.width = "0";
overlay.style.opacity = "0";
overlayNav.style.width = "0";
});
gsap.registerPlugin(ScrollTrigger);
ScrollTrigger.create({
trigger: ".cards",
start: "top top",
end: "bottom top",
onEnter: () => {
document.getElementById("day-indicator").classList.add("fixed");
document.querySelector(".orange-divider").classList.add("fixed");
},
onLeave: () => {
document.getElementById("day-indicator").classList.remove("fixed");
document.querySelector(".orange-divider").classList.remove("fixed");
},
onEnterBack: () => {
document.getElementById("day-indicator").classList.add("fixed");
document.querySelector(".orange-divider").classList.add("fixed");
},
onLeaveBack: () => {
document.getElementById("day-indicator").classList.remove("fixed");
document.querySelector(".orange-divider").classList.remove("fixed");
},
});
// Timeline for ScrollTrigger animation
const dayIndicator = document.getElementById("day-indicator");
const cards = document.querySelectorAll(".idv-card");
// Create a ScrollTrigger instance for each card
cards.forEach((card, index) => {
ScrollTrigger.create({
trigger: card,
start: "top 30%",
end: "bottom 30%", // Adjust as needed to fit your design
markers: false, // Set to true if you want to debug with visual markers
onEnter: () => updateDayIndicator(index + 1),
onEnterBack: () => updateDayIndicator(index + 1),
});
});
function updateDayIndicator(day) {
dayIndicator.textContent = `DAY ${day}`;
}
gsap.to(".nav-pointer", {
y: "100%",
scrollTrigger: {
trigger: ".cards",
start: "top top",
end: "bottom top",
scrub: true,
markers: false,
},
});
gsap.to(".orange-divider", {
y: "0%", // Adjust the end position as needed
scrollTrigger: {
trigger: ".cards",
start: "top top",
end: "bottom top",
scrub: true, // This makes the animation follow the scroll position
markers: false, // Set to true if you want to debug with visual markers
},
});
document.addEventListener("DOMContentLoaded", function () {
const hamburger = document.querySelector(".hamburger");
const navOverlay = document.querySelector(".nav-overlay");
const closeBtn = document.querySelector(".close-btn");
hamburger.addEventListener("click", function () {
navOverlay.style.width = "100%"; // Expand the overlay
navOverlay.style.opacity = "1"; // Make the overlay visible
document.body.classList.add("no-scroll"); // Prevent body scrolling
});
closeBtn.addEventListener("click", function () {
navOverlay.style.width = "0"; // Collapse the overlay
navOverlay.style.opacity = "0"; // Hide the overlay
document.body.classList.remove("no-scroll"); // Allow body scrolling
});
});
// Events Section
const div3Elements = document.querySelectorAll(".events .div-3");
div3Elements.forEach((div3) => {
const ellipse = div3.querySelector(".ellipse");
// Set the position of the ellipse to be at the bottom center
ellipse.style.top = "calc(100% - 48.5px)"; // Adjust the position to be at the bottom
ellipse.style.left = "calc(50% - 245px)"; // Center horizontally
div3.addEventListener("mouseenter", () => {
ellipse.style.opacity = "1";
});
div3.addEventListener("mouseleave", () => {
ellipse.style.opacity = "0";
});
});
// Page 6 Js
document.addEventListener("DOMContentLoaded", () => {
const faqs = document.querySelectorAll(".faq");
faqs.forEach((faq) => {
faq.addEventListener("click", () => {
const isActive = faq.classList.contains("active");
// Close all FAQs
faqs.forEach((f) => {
f.classList.remove("active");
});
// If clicked FAQ wasn't already active, open it
if (!isActive) {
faq.classList.add("active");
}
});
});
});
document.querySelectorAll("nav a").forEach((anchor) => {
anchor.addEventListener("click", function (e) {
e.preventDefault();
const targetSection = document.querySelector(this.getAttribute("href"));
window.scrollTo({
top: targetSection.offsetTop,
behavior: "smooth",
});
});
});
// Links for hamburger menu
document.querySelectorAll(" .overlay-nav a").forEach((anchor) => {
anchor.addEventListener("click", function (e) {
e.preventDefault();
const targetSection = document.querySelector(this.getAttribute("href"));
window.scrollTo({
top: targetSection.offsetTop,
behavior: "smooth",
});
overlay.style.width = "0";
document.body.classList.remove("no-scroll");
});
});
const tlPage = document.querySelector(".page3");
document.getElementById("getStarted").addEventListener("click", () => {
window.scrollTo({
top: tlPage.offsetTop,
behavior: "smooth",
});
});
// oss website redirection
document.getElementById("oss").addEventListener("click", () => {
window.open("https://aitoss.club/", "_blank");
});
// footer
gsap.registerPlugin(ScrollTrigger);
gsap.from(".footer-top", {
opacity: 0,
y: "200%",
stagger: 0.3,
duration: 3,
scrollTrigger: {
trigger: ".page7",
start: "top 50%",
end: "top 5%",
markers: false,
scrub: 2,
},
});
gsap.from(".footer-bottom", {
opacity: 0,
y: "100%",
stagger: 0.3,
duration: 3,
scrollTrigger: {
trigger: ".page7",
start: "top 50%",
end: "top 5%",
markers: false,
scrub: 2,
},
});
gsap.from(".footer-bottom h1 span", {
y: -120,
opacity: 0,
stagger: 0.3,
duration: 2,
scrollTrigger: {
trigger: ".page7",
start: "top 50%",
end: "top 5%",
markers: false,
scrub: 2,
},
delay: 2,
});
document.querySelectorAll(".footer-nav li a").forEach((anchor) => {
anchor.addEventListener("click", function (e) {
e.preventDefault();
const targetSection = document.querySelector(this.getAttribute("href"));
window.scrollTo({
top: targetSection.offsetTop,
behavior: "smooth",
});
});
});
//page 3 buttons
document.getElementById("notesButton1").addEventListener("click", function () {
// window.location.href = "";
window.open(
"https://economic-snowboard-82f.notion.site/SPARK-2k24-931b6ffdb0294e85981095e1852b8eb8",
"_blank"
);
});
document.getElementById("notesButton3").addEventListener("click", function () {
window.open(
"https://economic-snowboard-82f.notion.site/SPARK-2k24-931b6ffdb0294e85981095e1852b8eb8",
"_blank"
);
});
document.getElementById("notesButton3").addEventListener("click", function () {
window.open(
"https://economic-snowboard-82f.notion.site/SPARK-2k24-931b6ffdb0294e85981095e1852b8eb8",
"_blank"
);
});
document.getElementById("notesButton4").addEventListener("click", function () {
window.open(
"https://economic-snowboard-82f.notion.site/SPARK-2k24-931b6ffdb0294e85981095e1852b8eb8",
"_blank"
);
});
document.getElementById("notesButton5").addEventListener("click", function () {
window.open(
"https://economic-snowboard-82f.notion.site/SPARK-2k24-931b6ffdb0294e85981095e1852b8eb8",
"_blank"
);
});
document.getElementById("notesButton6").addEventListener("click", function () {
window.open(
"https://economic-snowboard-82f.notion.site/SPARK-2k24-931b6ffdb0294e85981095e1852b8eb8",
"_blank"
);
});
document.getElementById("notesButton7").addEventListener("click", function () {
window.open(
"https://economic-snowboard-82f.notion.site/SPARK-2k24-931b6ffdb0294e85981095e1852b8eb8",
"_blank"
);
});
document.getElementById("notesButton8").addEventListener("click", function () {
window.open(
"https://economic-snowboard-82f.notion.site/SPARK-2k24-931b6ffdb0294e85981095e1852b8eb8",
"_blank"
);
});
document.getElementById("notesButton9").addEventListener("click", function () {
window.open(
"https://economic-snowboard-82f.notion.site/SPARK-2k24-931b6ffdb0294e85981095e1852b8eb8",
"_blank"
);
});
document.getElementById("notesButton10").addEventListener("click", function () {
window.open(
"https://economic-snowboard-82f.notion.site/SPARK-2k24-931b6ffdb0294e85981095e1852b8eb8",
"_blank"
);
});
document.getElementById("notesButton11").addEventListener("click", function () {
window.open(
"https://economic-snowboard-82f.notion.site/SPARK-2k24-931b6ffdb0294e85981095e1852b8eb8",
"_blank"
);
});
document.getElementById("notesButton12").addEventListener("click", function () {
window.open(
"https://economic-snowboard-82f.notion.site/SPARK-2k24-931b6ffdb0294e85981095e1852b8eb8",
"_blank"
);
});
document.getElementById("notes").addEventListener("click", function () {
window.open(
"https://economic-snowboard-82f.notion.site/SPARK-2k24-931b6ffdb0294e85981095e1852b8eb8",
"_blank"
);
});
document
.getElementById("notesHamburgerSec")
.addEventListener("click", function () {
window.open(
"https://economic-snowboard-82f.notion.site/SPARK-2k24-931b6ffdb0294e85981095e1852b8eb8",
"_blank"
);
});