-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
459 lines (388 loc) · 14.4 KB
/
script.js
File metadata and controls
459 lines (388 loc) · 14.4 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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
/**
* LiteracAI - Interactive JavaScript
*
* Features:
* - Mobile navigation toggle
* - Header scroll effect
* - Smooth scrolling for anchor links
* - Scroll-triggered animations
* - Animated counter for statistics
* - Contact form handling
*/
(function() {
'use strict';
// ============================================
// DOM ELEMENTS
// ============================================
const header = document.getElementById('header');
const navToggle = document.getElementById('nav-toggle');
const navMenu = document.getElementById('nav-menu');
const navLinks = document.querySelectorAll('.nav-link');
const contactForm = document.getElementById('contact-form');
const animatedElements = document.querySelectorAll('.animate-on-scroll');
const statNumbers = document.querySelectorAll('.stat-number[data-count]');
// ============================================
// MOBILE NAVIGATION
// ============================================
/**
* Toggle mobile navigation menu
*/
function toggleMobileNav() {
const isExpanded = navToggle.getAttribute('aria-expanded') === 'true';
navToggle.setAttribute('aria-expanded', !isExpanded);
navMenu.classList.toggle('active');
// Prevent body scroll when menu is open
document.body.style.overflow = isExpanded ? '' : 'hidden';
}
/**
* Close mobile navigation menu
*/
function closeMobileNav() {
navToggle.setAttribute('aria-expanded', 'false');
navMenu.classList.remove('active');
document.body.style.overflow = '';
}
// Event listeners for mobile nav
if (navToggle) {
navToggle.addEventListener('click', toggleMobileNav);
}
// Close menu when clicking a nav link
navLinks.forEach(link => {
link.addEventListener('click', closeMobileNav);
});
// Close menu when clicking outside (on the overlay)
navMenu.addEventListener('click', (e) => {
if (e.target === navMenu) {
closeMobileNav();
}
});
// Close menu on escape key
document.addEventListener('keydown', (e) => {
if (e.key === 'Escape' && navMenu.classList.contains('active')) {
closeMobileNav();
navToggle.focus();
}
});
// ============================================
// HEADER SCROLL EFFECT
// ============================================
/**
* Add/remove scrolled class on header based on scroll position
*/
function handleHeaderScroll() {
if (window.scrollY > 50) {
header.classList.add('scrolled');
} else {
header.classList.remove('scrolled');
}
}
// Debounced scroll handler for performance
let scrollTimeout;
window.addEventListener('scroll', () => {
if (scrollTimeout) {
window.cancelAnimationFrame(scrollTimeout);
}
scrollTimeout = window.requestAnimationFrame(handleHeaderScroll);
});
// Initial check on page load
handleHeaderScroll();
// ============================================
// SMOOTH SCROLLING
// ============================================
/**
* Smooth scroll to anchor targets
*/
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
const targetId = this.getAttribute('href');
// Skip if it's just "#"
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
e.preventDefault();
// Calculate offset for fixed header
const headerHeight = header.offsetHeight;
const targetPosition = targetElement.getBoundingClientRect().top + window.pageYOffset - headerHeight - 20;
window.scrollTo({
top: targetPosition,
behavior: 'smooth'
});
// Update URL hash without jumping
history.pushState(null, null, targetId);
}
});
});
// ============================================
// SCROLL-TRIGGERED ANIMATIONS
// ============================================
/**
* Intersection Observer for scroll animations
*/
const observerOptions = {
root: null,
rootMargin: '0px 0px -10% 0px',
threshold: 0.1
};
const animationObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
// Add staggered delay for grid items
const parent = entry.target.parentElement;
if (parent && (parent.classList.contains('services-grid') ||
parent.classList.contains('approach-grid') ||
parent.classList.contains('testimonials-grid') ||
parent.classList.contains('stats-grid'))) {
const siblings = Array.from(parent.children);
const index = siblings.indexOf(entry.target);
entry.target.style.transitionDelay = `${index * 0.1}s`;
}
entry.target.classList.add('visible');
// Unobserve after animation
animationObserver.unobserve(entry.target);
}
});
}, observerOptions);
// Observe all animated elements
animatedElements.forEach(el => {
animationObserver.observe(el);
});
// ============================================
// ANIMATED COUNTERS
// ============================================
/**
* Animate a number from 0 to its target value
* @param {HTMLElement} element - The element to animate
* @param {number} target - The target number
* @param {number} duration - Animation duration in ms
*/
function animateCounter(element, target, duration = 2000) {
const start = 0;
const startTime = performance.now();
function updateCounter(currentTime) {
const elapsed = currentTime - startTime;
const progress = Math.min(elapsed / duration, 1);
// Easing function (ease-out-cubic)
const easeOut = 1 - Math.pow(1 - progress, 3);
const current = Math.floor(start + (target - start) * easeOut);
element.textContent = current.toLocaleString();
if (progress < 1) {
requestAnimationFrame(updateCounter);
} else {
element.textContent = target.toLocaleString();
}
}
requestAnimationFrame(updateCounter);
}
/**
* Intersection Observer for counter animations
*/
const counterObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const target = parseInt(entry.target.dataset.count, 10);
animateCounter(entry.target, target);
counterObserver.unobserve(entry.target);
}
});
}, {
threshold: 0.5
});
// Observe all stat numbers
statNumbers.forEach(el => {
counterObserver.observe(el);
});
// ============================================
// CONTACT FORM HANDLING
// ============================================
/**
* Handle contact form submission
*/
if (contactForm) {
contactForm.addEventListener('submit', async function(e) {
e.preventDefault();
const submitBtn = this.querySelector('button[type="submit"]');
const originalText = submitBtn.innerHTML;
// Show loading state
submitBtn.disabled = true;
submitBtn.innerHTML = `
<span class="loading-spinner"></span>
Sending...
`;
// Gather form data
const formData = new FormData(this);
const data = Object.fromEntries(formData.entries());
// Simulate form submission (replace with actual API call)
try {
// Simulated delay for demo purposes
await new Promise(resolve => setTimeout(resolve, 1500));
// Success message
showNotification('Message sent successfully! We\'ll be in touch soon.', 'success');
// Reset form
this.reset();
} catch (error) {
// Error message
showNotification('Something went wrong. Please try again.', 'error');
} finally {
// Restore button state
submitBtn.disabled = false;
submitBtn.innerHTML = originalText;
}
});
}
/**
* Show a notification message
* @param {string} message - The message to display
* @param {string} type - 'success' or 'error'
*/
function showNotification(message, type = 'success') {
// Remove existing notifications
const existing = document.querySelector('.notification');
if (existing) {
existing.remove();
}
// Create notification element
const notification = document.createElement('div');
notification.className = `notification notification-${type}`;
notification.innerHTML = `
<span class="notification-message">${message}</span>
<button class="notification-close" aria-label="Close notification">×</button>
`;
// Add styles
Object.assign(notification.style, {
position: 'fixed',
bottom: '20px',
right: '20px',
padding: '16px 24px',
borderRadius: '8px',
backgroundColor: type === 'success' ? '#4A9B7F' : '#D64545',
color: 'white',
display: 'flex',
alignItems: 'center',
gap: '12px',
boxShadow: '0 4px 12px rgba(0,0,0,0.15)',
zIndex: '1000',
animation: 'slideInRight 0.3s ease'
});
// Add animation keyframes if not exists
if (!document.getElementById('notification-styles')) {
const style = document.createElement('style');
style.id = 'notification-styles';
style.textContent = `
@keyframes slideInRight {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes slideOutRight {
from {
transform: translateX(0);
opacity: 1;
}
to {
transform: translateX(100%);
opacity: 0;
}
}
.notification-close {
background: none;
border: none;
color: white;
font-size: 20px;
cursor: pointer;
padding: 0;
line-height: 1;
opacity: 0.8;
}
.notification-close:hover {
opacity: 1;
}
.loading-spinner {
display: inline-block;
width: 16px;
height: 16px;
border: 2px solid rgba(255,255,255,0.3);
border-top-color: white;
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
`;
document.head.appendChild(style);
}
document.body.appendChild(notification);
// Close button functionality
const closeBtn = notification.querySelector('.notification-close');
closeBtn.addEventListener('click', () => {
removeNotification(notification);
});
// Auto-remove after 5 seconds
setTimeout(() => {
removeNotification(notification);
}, 5000);
}
/**
* Remove notification with animation
* @param {HTMLElement} notification - The notification element to remove
*/
function removeNotification(notification) {
if (notification && notification.parentElement) {
notification.style.animation = 'slideOutRight 0.3s ease forwards';
setTimeout(() => {
notification.remove();
}, 300);
}
}
// ============================================
// ACTIVE NAV LINK HIGHLIGHTING
// ============================================
/**
* Update active nav link based on scroll position
*/
function updateActiveNavLink() {
const sections = document.querySelectorAll('section[id]');
const scrollPos = window.scrollY + 100;
sections.forEach(section => {
const top = section.offsetTop;
const height = section.offsetHeight;
const id = section.getAttribute('id');
const navLink = document.querySelector(`.nav-link[href="#${id}"]`);
if (navLink) {
if (scrollPos >= top && scrollPos < top + height) {
navLinks.forEach(link => link.classList.remove('active'));
navLink.classList.add('active');
}
}
});
}
// Add active nav link styles
const navActiveStyle = document.createElement('style');
navActiveStyle.textContent = `
.nav-link.active {
color: var(--color-primary);
}
.nav-link.active::after {
width: 100%;
}
`;
document.head.appendChild(navActiveStyle);
// Update on scroll (throttled)
let navScrollTimeout;
window.addEventListener('scroll', () => {
if (navScrollTimeout) {
window.cancelAnimationFrame(navScrollTimeout);
}
navScrollTimeout = window.requestAnimationFrame(updateActiveNavLink);
});
// ============================================
// INITIALIZATION
// ============================================
// Log successful initialization
console.log('LiteracAI website initialized successfully.');
})();