-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
326 lines (238 loc) · 8.85 KB
/
script.js
File metadata and controls
326 lines (238 loc) · 8.85 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
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
//BASIC ONE-
// var cursor = document.querySelector("#cursor")
// var blur = document.querySelector("#cursor-blur")
// document.addEventListener("mousemove", function(dets){
// cursor.style.left = dets.clientX - 12 + "px";
// cursor.style.top = dets.clientY - 12 + "px";
// blur.style.left = dets.clientX - 250 + "px";
// blur.style.top = dets.clientY - 250 + "px";
// })
// ya still reading comments? Okay bruhh....
gsap.to("#nav",{
backgroundColor:"#000",
duration:0.5,
height: "90px",
scrollTrigger:{
trigger: "#nav",
scroller: "body",
// markers:true,
start: "top -10%",
end: "top -11%",
scrub:1
}
})
gsap.to("#main",{
backgroundColor:"#000",
scrollTrigger:{
trigger: "#main",
scroller: "body",
// markers:true,
start: "top -25%",
end: "top -70%",
scrub:2
}
})
document.addEventListener("DOMContentLoaded", function () {
const h4Elements = document.querySelectorAll("#scroller h4");
document.addEventListener("mousemove", function (event) {
h4Elements.forEach(h4 => {
const rect = h4.getBoundingClientRect();
const mouseX = event.clientX;
const mouseY = event.clientY;
if (
mouseX >= rect.left &&
mouseX <= rect.right &&
mouseY >= rect.top &&
mouseY <= rect.bottom
) {
h4.style.webkitTextFillColor = "#95C11E";
h4.style.webkitTextStrokeColor = "#95C11E";
} else {
h4.style.webkitTextFillColor = "#000";
h4.style.webkitTextStrokeColor = "white";
}
});
});
});
document.addEventListener("DOMContentLoaded", function () {
const cards = document.querySelectorAll(".card");
document.addEventListener("mousemove", function (event) {
cards.forEach(card => {
const rect = card.getBoundingClientRect();
const mouseX = event.clientX;
const mouseY = event.clientY;
const overlay = card.querySelector(".overlay");
if (
mouseX >= rect.left &&
mouseX <= rect.right &&
mouseY >= rect.top &&
mouseY <= rect.bottom
) {
card.classList.add("hovered");
} else {
card.classList.remove("hovered");
}
});
});
});
document.addEventListener("DOMContentLoaded", function () {
const cards = document.querySelectorAll(".card");
let middleCard = cards[Math.floor(cards.length / 2)];
document.addEventListener("mousemove", function (event) {
const rect = middleCard.getBoundingClientRect();
const cardX = rect.left + rect.width / 2;
const cardY = rect.top + rect.height / 2;
const mouseX = event.clientX;
const mouseY = event.clientY;
const deltaX = (mouseX - cardX) / rect.width;
const deltaY = (mouseY - cardY) / rect.height;
const maxTilt = 6; // Reduced tilt angle for a smoother effect
const rotateY = deltaX * maxTilt;
const rotateX = -deltaY * maxTilt;
cards.forEach(card => {
card.style.transition = "transform 0.15s linear";
card.style.transform = `perspective(800px) rotateX(${rotateX}deg) rotateY(${rotateY}deg)`;
});
});
// Reset effect smoothly on mouse leave
cards.forEach(card => {
card.addEventListener("mouseleave", () => {
card.style.transition = "transform 0.4s ease-out";
card.style.transform = "perspective(800px) rotateX(0deg) rotateY(0deg)";
});
});
});
document.addEventListener("DOMContentLoaded", function () {
const buttons = document.querySelectorAll("button");
document.addEventListener("mousemove", function (event) {
buttons.forEach(button => {
const rect = button.getBoundingClientRect();
const mouseX = event.clientX;
const mouseY = event.clientY;
const proximity = 50; // Adjust for sensitivity
if (
mouseX >= rect.left - proximity &&
mouseX <= rect.right + proximity &&
mouseY >= rect.top - proximity &&
mouseY <= rect.bottom + proximity
) {
button.classList.add("hovered");
} else {
button.classList.remove("hovered");
}
});
});
});
// ADVANCED CURSOR MOVEMENTs, lol
document.addEventListener("DOMContentLoaded", function () {
const cursor = document.getElementById("cursor");
const blur = document.getElementById("cursor-blur");
const hoverTargets = document.querySelectorAll("#nav h4, #nav img, .card, button, #imageTrack img, #follow-on-ig, .elem, #f1 img, #footer-social i, #span1, #f3 h3, #f2 h3, .common-class, #webdesign");
let posX = 0, posY = 0;
let mouseX = 0, mouseY = 0;
let blurX = 0, blurY = 0;
let cursorSize = 25; // Default cursor size
document.addEventListener("mousemove", function (event) {
let isHovering = false;
hoverTargets.forEach(target => {
const rect = target.getBoundingClientRect();
const x = event.clientX;
const y = event.clientY;
if (x >= rect.left && x <= rect.right && y >= rect.top && y <= rect.bottom) {
isHovering = true;
}
});
if (isHovering) {
cursorSize += (75 - cursorSize) * 0.2; // Smoothly transition to 50px
mouseX = event.clientX - 36;
mouseY = event.clientY - 36;
cursor.style.backgroundColor = "transparent";
cursor.style.border = "1px solid white";
} else {
cursorSize += (25 - cursorSize) * 0.2; // Smoothly transition to 25px
mouseX = event.clientX - 12;
mouseY = event.clientY - 12;
cursor.style.backgroundColor = "#95C11E";
cursor.style.border = "none";
}
});
function animateCursor() {
posX += (mouseX - posX) * 0.15;
posY += (mouseY - posY) * 0.15;
cursor.style.left = posX + "px";
cursor.style.top = posY + "px";
cursor.style.width = cursorSize + "px";
cursor.style.height = cursorSize + "px";
// Smooth blur movement
blurX += (posX - blurX) * 0.05;
blurY += (posY - blurY) * 0.05;
blur.style.left = blurX - 180 + "px";
blur.style.top = blurY - 180 + "px";
requestAnimationFrame(animateCursor);
}
animateCursor();
});
const page5 = document.getElementById("page5");
const text = page5.querySelector("p");
const colon1 = document.getElementById("colon1");
const colon2 = document.getElementById("colon2");
// Smooth text hover effect
page5.addEventListener("mousemove", (e) => {
const { clientX, clientY } = e;
const { width, height, left, top } = page5.getBoundingClientRect();
// Normalize the cursor position (-1 to 1 range)
const x = (clientX - left - width / 2) / (width / 2);
const y = (clientY - top - height / 2) / (height / 2);
// Apply inverse movement effect
const maxTranslate = 50; // max movement in pixels
const translateX = -x * maxTranslate;
const translateY = -y * maxTranslate / 2; // Less movement on Y-axis for subtle effect
text.style.transform = `translate(${translateX}px, ${translateY}px)`;
text.style.transition = "transform 0.5s ease-out"; // Smoother and slower transition
});
// Reset effect when mouse leaves
page5.addEventListener("mouseleave", () => {
text.style.transform = "translate(0, 0)";
text.style.transition = "transform 0.8s ease-out"; // Slower reset for smoothness
});
// GSAP ScrollTrigger effect for colons from diagonal to their position
gsap.registerPlugin(ScrollTrigger);
gsap.from(colon1, {
scrollTrigger: {
trigger: page5,
start: "top 80%",
end: "top 80%",
toggleActions: "play none none reverse",
},
x: -100,
y: -100,
opacity: 0,
duration: 1.2,
ease: "power2.out",
});
gsap.from(colon2, {
scrollTrigger: {
trigger: page5,
start: "top 75%",
end: "top 75%",
toggleActions: "play none none reverse",
},
x: 100,
y: 100,
opacity: 0,
duration: 1.2,
ease: "power2.out",
});
gsap.from("#page6 h1", {
scrollTrigger: {
trigger: page6,
start: "top 75%",
end: "top 75%",
toggleActions: "play pause resume reverse",
scrub: true,
},
y: 60,
opacity: 0,
duration: 1,
ease: "power2.out",
});