-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
412 lines (358 loc) · 12.1 KB
/
script.js
File metadata and controls
412 lines (358 loc) · 12.1 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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
document.addEventListener("DOMContentLoaded", () => {
// === 粒子背景 ===
const canvas = document.getElementById("particles-canvas");
if (canvas) {
const ctx = canvas.getContext("2d");
let particles = [];
const particleCount = 75;
const connectionDistance = 120;
const mouseRadius = 150;
let mouse = { x: null, y: null };
function resizeCanvas() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
}
resizeCanvas();
window.addEventListener("resize", resizeCanvas);
class Particle {
constructor() {
this.x = Math.random() * canvas.width;
this.y = Math.random() * canvas.height;
this.size = Math.random() * 2 + 0.5;
this.speedX = (Math.random() - 0.5) * 0.4;
this.speedY = (Math.random() - 0.5) * 0.4;
this.opacity = Math.random() * 0.4 + 0.1;
}
update() {
this.x += this.speedX;
this.y += this.speedY;
if (this.x > canvas.width) this.x = 0;
if (this.x < 0) this.x = canvas.width;
if (this.y > canvas.height) this.y = 0;
if (this.y < 0) this.y = canvas.height;
if (mouse.x !== null) {
const dx = mouse.x - this.x;
const dy = mouse.y - this.y;
const dist = Math.sqrt(dx * dx + dy * dy);
if (dist < mouseRadius) {
const force = (mouseRadius - dist) / mouseRadius;
this.x -= (dx / dist) * force * 1.5;
this.y -= (dy / dist) * force * 1.5;
}
}
}
draw() {
ctx.beginPath();
ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);
ctx.fillStyle = `rgba(201, 100, 66, ${this.opacity})`;
ctx.fill();
}
}
function initParticles() {
particles = [];
for (let i = 0; i < particleCount; i++) {
particles.push(new Particle());
}
}
function connectParticles() {
for (let i = 0; i < particles.length; i++) {
for (let j = i + 1; j < particles.length; j++) {
const dx = particles[i].x - particles[j].x;
const dy = particles[i].y - particles[j].y;
const dist = Math.sqrt(dx * dx + dy * dy);
if (dist < connectionDistance) {
const opacity = (1 - dist / connectionDistance) * 0.12;
ctx.beginPath();
ctx.strokeStyle = `rgba(201, 100, 66, ${opacity})`;
ctx.lineWidth = 0.5;
ctx.moveTo(particles[i].x, particles[i].y);
ctx.lineTo(particles[j].x, particles[j].y);
ctx.stroke();
}
}
}
}
let animationId;
function animate() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
particles.forEach((p) => {
p.update();
p.draw();
});
connectParticles();
animationId = requestAnimationFrame(animate);
}
// Cleanup animation on page unload
window.addEventListener('beforeunload', () => {
cancelAnimationFrame(animationId);
});
initParticles();
animate();
document.addEventListener("mousemove", (e) => {
mouse.x = e.clientX;
mouse.y = e.clientY;
});
document.addEventListener("mouseleave", () => {
mouse.x = null;
mouse.y = null;
});
}
// === 打字机效果 (仅首页) ===
const typewriterElement = document.getElementById("typewriter");
if (typewriterElement) {
const texts = [
"Building BrightS Kernel...",
"Designing D-- for Teens...",
"Visualizing Data with FH Clac...",
"OpenLight Studio: Est. 2022",
];
let textIndex = 0;
let charIndex = 0;
let isDeleting = false;
let typeSpeed = 100;
function type() {
const currentText = texts[textIndex];
if (isDeleting) {
typewriterElement.textContent = currentText.substring(0, charIndex - 1);
charIndex--;
typeSpeed = 50;
} else {
typewriterElement.textContent = currentText.substring(0, charIndex + 1);
charIndex++;
typeSpeed = 100;
}
if (!isDeleting && charIndex === currentText.length) {
isDeleting = true;
typeSpeed = 2000;
} else if (isDeleting && charIndex === 0) {
isDeleting = false;
textIndex = (textIndex + 1) % texts.length;
typeSpeed = 500;
}
setTimeout(type, typeSpeed);
}
setTimeout(type, 1000);
}
// === 滚动显现动画 ===
const observerOptions = {
threshold: 0.1,
rootMargin: "0px 0px -50px 0px",
};
const observer = new IntersectionObserver((entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
entry.target.classList.add("visible");
}
});
}, observerOptions);
document.querySelectorAll(".fade-in").forEach((el) => {
observer.observe(el);
});
// === 导航栏滚动效果 + 滚动进度条 ===
const navbar = document.querySelector(".navbar");
const scrollProgress = document.querySelector(".scroll-progress");
if (navbar || scrollProgress) {
window.addEventListener("scroll", () => {
if (navbar) {
if (window.scrollY > 50) {
navbar.classList.add("scrolled");
} else {
navbar.classList.remove("scrolled");
}
}
if (scrollProgress) {
const scrollPercent = (window.scrollY / (document.body.scrollHeight - window.innerHeight)) * 100;
scrollProgress.style.width = scrollPercent + '%';
}
});
}
// === 移动端菜单 ===
const hamburger = document.querySelector(".hamburger");
const mobileMenu = document.querySelector(".mobile-menu");
if (hamburger && mobileMenu) {
hamburger.addEventListener("click", () => {
hamburger.classList.toggle("active");
mobileMenu.classList.toggle("active");
document.body.style.overflow = mobileMenu.classList.contains("active")
? "hidden"
: "";
});
mobileMenu.querySelectorAll("a").forEach((link) => {
link.addEventListener("click", () => {
hamburger.classList.remove("active");
mobileMenu.classList.remove("active");
document.body.style.overflow = "";
});
});
}
// === 平滑滚动锚点 ===
document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
anchor.addEventListener("click", function (e) {
e.preventDefault();
const targetId = this.getAttribute("href");
if (targetId === "#") return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
const headerOffset = 80;
const elementPosition = targetElement.getBoundingClientRect().top;
const offsetPosition =
elementPosition + window.pageYOffset - headerOffset;
window.scrollTo({
top: offsetPosition,
behavior: "smooth",
});
}
});
});
// === 数字计数动画 ===
const statNumbers = document.querySelectorAll(".stat-card .stat-number");
if (statNumbers.length > 0) {
const countObserver = new IntersectionObserver(
(entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
const target = parseInt(entry.target.dataset.target) || 0;
let current = 0;
const duration = 2000;
const increment = target / (duration / 16);
const timer = setInterval(() => {
current += increment;
if (current >= target) {
current = target;
clearInterval(timer);
}
entry.target.textContent = Math.floor(current);
}, 16);
countObserver.unobserve(entry.target);
}
});
},
{ threshold: 0.5 }
);
statNumbers.forEach((el) => countObserver.observe(el));
}
// === 鼠标跟随光效 ===
const cursorGlow = document.createElement("div");
cursorGlow.className = "cursor-glow";
cursorGlow.style.cssText = `
position: fixed;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(201, 100, 66, 0.04) 0%, transparent 70%);
pointer-events: none;
z-index: 0;
transform: translate(-50%, -50%);
transition: opacity 0.3s;
opacity: 0;
`;
document.body.appendChild(cursorGlow);
let cursorTimeout;
document.addEventListener("mousemove", (e) => {
cursorGlow.style.left = e.clientX + "px";
cursorGlow.style.top = e.clientY + "px";
cursorGlow.style.opacity = "1";
clearTimeout(cursorTimeout);
cursorTimeout = setTimeout(() => {
cursorGlow.style.opacity = "0";
}, 3000);
});
// === 主题切换 ===
const themeToggle = document.getElementById("theme-toggle");
const html = document.documentElement;
const savedTheme = localStorage.getItem("theme");
if (savedTheme === "dark") {
html.classList.add("dark-theme");
} else {
html.classList.add("light-theme");
}
if (themeToggle) {
themeToggle.addEventListener("click", () => {
const isLight = html.classList.contains("light-theme");
if (isLight) {
html.classList.remove("light-theme");
html.classList.add("dark-theme");
localStorage.setItem("theme", "dark");
} else {
html.classList.remove("dark-theme");
html.classList.add("light-theme");
localStorage.setItem("theme", "light");
}
});
}
// === 回到顶部按钮 ===
const scrollToTopBtn = document.querySelector(".scroll-to-top");
if (scrollToTopBtn) {
window.addEventListener("scroll", () => {
if (window.scrollY > 400) {
scrollToTopBtn.classList.add("visible");
} else {
scrollToTopBtn.classList.remove("visible");
}
});
scrollToTopBtn.addEventListener("click", () => {
window.scrollTo({
top: 0,
behavior: "smooth",
});
});
}
// === 3D 卡片倾斜效果 ===
const cards = document.querySelectorAll(
".preview-card, .about-card, .project-card, .stat-card, .tech-item, .value-item, .role-card, .member-card"
);
cards.forEach((card) => {
card.addEventListener("mousemove", (e) => {
const rect = card.getBoundingClientRect();
const x = e.clientX - rect.left;
const y = e.clientY - rect.top;
const centerX = rect.width / 2;
const centerY = rect.height / 2;
const rotateX = (y - centerY) / 20;
const rotateY = (centerX - x) / 20;
card.style.transform = `perspective(1000px) rotateX(${rotateX}deg) rotateY(${rotateY}deg) translateY(-8px)`;
const glow = card.querySelector(".card-glow");
if (glow) {
const percentX = (x / rect.width) * 100;
const percentY = (y / rect.height) * 100;
glow.style.setProperty("--glow-x", `-${100 - percentX}%`);
glow.style.setProperty("--glow-y", `-${100 - percentY}%`);
}
});
card.addEventListener("mouseleave", () => {
card.style.transform = "";
});
});
// === 卡片点击涟漪效果 ===
const interactiveCards = document.querySelectorAll(
".preview-card, .btn, .btn-primary, .btn-outline, .btn-gh, .btn-qq, .btn-gh-dark, .btn-afdian"
);
interactiveCards.forEach((element) => {
element.addEventListener("click", function (e) {
const ripple = document.createElement("span");
ripple.className = "ripple";
const rect = this.getBoundingClientRect();
const size = Math.max(rect.width, rect.height);
ripple.style.width = ripple.style.height = size + "px";
ripple.style.left = e.clientX - rect.left - size / 2 + "px";
ripple.style.top = e.clientY - rect.top - size / 2 + "px";
this.style.position = "relative";
this.style.overflow = "hidden";
this.appendChild(ripple);
ripple.addEventListener("animationend", () => {
ripple.remove();
});
});
});
// === 页面进入动画 ===
document.body.classList.add("page-transition");
// === 滚动指示器点击 ===
const scrollIndicator = document.querySelector(".scroll-indicator");
if (scrollIndicator) {
scrollIndicator.addEventListener("click", () => {
const nextSection = document.querySelector(".preview-section");
if (nextSection) {
nextSection.scrollIntoView({ behavior: "smooth" });
}
});
}
});