-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
434 lines (371 loc) · 12.7 KB
/
script.js
File metadata and controls
434 lines (371 loc) · 12.7 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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
/**
* AltFlex Capstone Methodology Design
* Interactive JavaScript for Premium Presentation Website
*/
document.addEventListener('DOMContentLoaded', () => {
// Navigation
initNavigation();
// Scroll Effects
initScrollEffects();
// Phase Tabs
initPhaseTabs();
// Animations
initScrollAnimations();
});
/**
* Navigation functionality - FIXED smooth scroll
*/
function initNavigation() {
const navbar = document.getElementById('navbar');
const navToggle = document.getElementById('navToggle');
const navMenu = document.getElementById('navMenu');
const navLinks = document.querySelectorAll('.nav-link');
// Scroll effect for navbar
window.addEventListener('scroll', () => {
if (window.scrollY > 50) {
navbar.classList.add('scrolled');
} else {
navbar.classList.remove('scrolled');
}
});
// Mobile menu toggle
navToggle.addEventListener('click', () => {
navToggle.classList.toggle('active');
navMenu.classList.toggle('active');
// Prevent body scroll when menu is open
document.body.style.overflow = navMenu.classList.contains('active') ? 'hidden' : '';
});
// Close menu on link click
navLinks.forEach(link => {
link.addEventListener('click', (e) => {
// Close mobile menu
navToggle.classList.remove('active');
navMenu.classList.remove('active');
document.body.style.overflow = '';
// Handle anchor links with smooth scroll
const href = link.getAttribute('href');
if (href && href.startsWith('#') && href.length > 1) {
e.preventDefault();
const targetId = href.substring(1);
const target = document.getElementById(targetId);
if (target) {
// Calculate offset (navbar height + some padding)
const navbarHeight = navbar.offsetHeight;
const offsetTop = target.getBoundingClientRect().top + window.pageYOffset - navbarHeight - 20;
window.scrollTo({
top: offsetTop,
behavior: 'smooth'
});
// Update URL hash without jumping
history.pushState(null, null, href);
}
}
});
});
// Also handle CTA buttons and other anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
if (!anchor.classList.contains('nav-link')) {
anchor.addEventListener('click', function (e) {
const href = this.getAttribute('href');
if (href && href.length > 1) {
e.preventDefault();
const targetId = href.substring(1);
const target = document.getElementById(targetId);
if (target) {
const navbarHeight = navbar.offsetHeight;
const offsetTop = target.getBoundingClientRect().top + window.pageYOffset - navbarHeight - 20;
window.scrollTo({
top: offsetTop,
behavior: 'smooth'
});
history.pushState(null, null, href);
}
}
});
}
});
// Handle initial hash on page load
if (window.location.hash) {
setTimeout(() => {
const targetId = window.location.hash.substring(1);
const target = document.getElementById(targetId);
if (target) {
const navbarHeight = navbar.offsetHeight;
const offsetTop = target.getBoundingClientRect().top + window.pageYOffset - navbarHeight - 20;
window.scrollTo({
top: offsetTop,
behavior: 'smooth'
});
}
}, 100);
}
}
/**
* Scroll-based effects and active nav highlighting
*/
function initScrollEffects() {
const sections = document.querySelectorAll('section[id]');
const navLinks = document.querySelectorAll('.nav-link');
const navbar = document.getElementById('navbar');
// Highlight active nav link based on scroll position
function updateActiveNav() {
const scrollY = window.pageYOffset;
const navbarHeight = navbar.offsetHeight;
sections.forEach(section => {
const sectionTop = section.offsetTop - navbarHeight - 100;
const sectionHeight = section.offsetHeight;
const sectionId = section.getAttribute('id');
if (scrollY >= sectionTop && scrollY < sectionTop + sectionHeight) {
// Remove active class from all links
navLinks.forEach(link => {
link.classList.remove('active');
});
// Add active class to matching link
const activeLink = document.querySelector(`.nav-link[href="#${sectionId}"]`);
if (activeLink) {
activeLink.classList.add('active');
}
}
});
}
// Throttle scroll event for performance
let ticking = false;
window.addEventListener('scroll', () => {
if (!ticking) {
window.requestAnimationFrame(() => {
updateActiveNav();
ticking = false;
});
ticking = true;
}
});
// Initial call
updateActiveNav();
// Parallax effect for gradient orbs (only on desktop)
if (window.innerWidth > 768) {
window.addEventListener('scroll', () => {
const scrollY = window.scrollY;
const orbs = document.querySelectorAll('.gradient-orb');
orbs.forEach((orb, index) => {
const speed = (index + 1) * 0.03;
orb.style.transform = `translateY(${scrollY * speed}px)`;
});
});
}
}
/**
* Phase tabs functionality
*/
function initPhaseTabs() {
const tabs = document.querySelectorAll('.phase-tab');
const panels = document.querySelectorAll('.phase-panel');
tabs.forEach(tab => {
tab.addEventListener('click', () => {
const targetPhase = tab.getAttribute('data-phase');
// Update active tab
tabs.forEach(t => t.classList.remove('active'));
tab.classList.add('active');
// Update active panel
panels.forEach(panel => {
panel.classList.remove('active');
if (panel.id === targetPhase) {
panel.classList.add('active');
}
});
});
});
}
/**
* Scroll-triggered animations
*/
function initScrollAnimations() {
const observerOptions = {
root: null,
rootMargin: '0px',
threshold: 0.1
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate-in');
// Animate children with stagger effect
const children = entry.target.querySelectorAll('.animate-child');
children.forEach((child, index) => {
setTimeout(() => {
child.classList.add('animate-in');
}, index * 100);
});
}
});
}, observerOptions);
// Observe all cards and sections
const animatableElements = document.querySelectorAll(
'.glass-card, .deliverable-card, .sprint-card, .team-card, ' +
'.ceremony-card, .tool-card, .reference-card, .success-card, ' +
'.rationale-card, .stack-category, .factor-item'
);
animatableElements.forEach(el => {
el.style.opacity = '0';
el.style.transform = 'translateY(20px)';
el.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
observer.observe(el);
});
// Add animate-in styles
const style = document.createElement('style');
style.textContent = `
.animate-in {
opacity: 1 !important;
transform: translateY(0) !important;
}
.nav-link.active {
color: var(--text-primary) !important;
}
.nav-link.active::after {
width: 100% !important;
}
`;
document.head.appendChild(style);
}
/**
* Counter animation for stats
*/
function animateCounter(element, target, duration = 2000) {
let start = 0;
const startTime = performance.now();
function update(currentTime) {
const elapsed = currentTime - startTime;
const progress = Math.min(elapsed / duration, 1);
// Easing function
const easeOutQuart = 1 - Math.pow(1 - progress, 4);
const current = Math.floor(easeOutQuart * target);
element.textContent = current;
if (progress < 1) {
requestAnimationFrame(update);
} else {
element.textContent = target;
}
}
requestAnimationFrame(update);
}
/**
* Initialize counter animations when stats come into view
*/
function initCounterAnimations() {
const statValues = document.querySelectorAll('.stat-value');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const element = entry.target;
const text = element.textContent;
// Only animate numeric values
if (!isNaN(parseInt(text))) {
const target = parseInt(text);
animateCounter(element, target);
}
observer.unobserve(element);
}
});
}, { threshold: 0.5 });
statValues.forEach(stat => observer.observe(stat));
}
// Initialize counter animations
document.addEventListener('DOMContentLoaded', initCounterAnimations);
/**
* Chart bar hover effects
*/
document.querySelectorAll('.chart-bar').forEach(bar => {
bar.addEventListener('mouseenter', function () {
this.style.filter = 'brightness(1.2)';
});
bar.addEventListener('mouseleave', function () {
this.style.filter = 'brightness(1)';
});
});
/**
* Copy code functionality (for future use)
*/
function copyToClipboard(text) {
navigator.clipboard.writeText(text).then(() => {
showToast('Copied to clipboard!');
}).catch(err => {
console.error('Failed to copy:', err);
});
}
/**
* Toast notification
*/
function showToast(message, duration = 3000) {
const toast = document.createElement('div');
toast.className = 'toast-notification';
toast.textContent = message;
toast.style.cssText = `
position: fixed;
bottom: 2rem;
right: 2rem;
background: var(--primary);
color: white;
padding: 1rem 1.5rem;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
z-index: 9999;
animation: slideIn 0.3s ease;
`;
document.body.appendChild(toast);
setTimeout(() => {
toast.style.animation = 'slideOut 0.3s ease';
setTimeout(() => toast.remove(), 300);
}, duration);
}
// Add toast animation styles
const toastStyles = document.createElement('style');
toastStyles.textContent = `
@keyframes slideIn {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes slideOut {
from {
transform: translateX(0);
opacity: 1;
}
to {
transform: translateX(100%);
opacity: 0;
}
}
`;
document.head.appendChild(toastStyles);
/**
* Keyboard navigation support
*/
document.addEventListener('keydown', (e) => {
// ESC key closes mobile menu
if (e.key === 'Escape') {
const navToggle = document.getElementById('navToggle');
const navMenu = document.getElementById('navMenu');
if (navMenu.classList.contains('active')) {
navToggle.classList.remove('active');
navMenu.classList.remove('active');
document.body.style.overflow = '';
}
}
});
/**
* Handle window resize - close mobile menu on desktop
*/
window.addEventListener('resize', () => {
if (window.innerWidth > 768) {
const navToggle = document.getElementById('navToggle');
const navMenu = document.getElementById('navMenu');
navToggle.classList.remove('active');
navMenu.classList.remove('active');
document.body.style.overflow = '';
}
});
console.log('🔐 AltFlex Capstone Methodology Design loaded successfully!');