-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
312 lines (272 loc) · 8.76 KB
/
script.js
File metadata and controls
312 lines (272 loc) · 8.76 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
document.addEventListener("DOMContentLoaded", () => {
// === 粒子背景 ===
const canvas = document.getElementById("particles-canvas");
if (canvas) {
const ctx = canvas.getContext("2d");
let particles = [];
const particleCount = 60;
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(0, 212, 255, ${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(0, 212, 255, ${opacity})`;
ctx.lineWidth = 0.5;
ctx.moveTo(particles[i].x, particles[i].y);
ctx.lineTo(particles[j].x, particles[j].y);
ctx.stroke();
}
}
}
}
function animate() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
particles.forEach((p) => {
p.update();
p.draw();
});
connectParticles();
requestAnimationFrame(animate);
}
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");
if (navbar) {
window.addEventListener("scroll", () => {
if (window.scrollY > 50) {
navbar.classList.add("scrolled");
} else {
navbar.classList.remove("scrolled");
}
});
}
// === 移动端菜单 ===
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.style.cssText = `
position: fixed;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(0, 212, 255, 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");
}
});
}
});