Spaces:
Running
Running
File size: 8,299 Bytes
be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 06469d6 be348b6 | 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 |
// Shared JavaScript across all pages
document.addEventListener('DOMContentLoaded', function() {
// Initialize lazy loading
initLazyLoading();
// Counter animation for stats
const counters = document.querySelectorAll('[data-count]');
const speed = 200;
const animateCounter = (counter) => {
const target = +counter.getAttribute('data-count');
const increment = target / speed;
const updateCount = () => {
const count = +counter.innerText.replace(/,/g, '');
if (count < target) {
counter.innerText = Math.ceil(count + increment).toLocaleString();
setTimeout(updateCount, 1);
} else {
counter.innerText = target.toLocaleString();
}
};
updateCount();
};
// Intersection Observer for animations and lazy loading
const observerOptions = {
threshold: 0.1,
rootMargin: '50px 0px -50px 0px'
};
const observerCallback = (entries, observer) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
// Handle lazy loaded images
if (entry.target.dataset.src) {
entry.target.src = entry.target.dataset.src;
entry.target.classList.remove('skeleton');
entry.target.onload = () => {
entry.target.classList.add('loaded');
};
}
// Handle lazy loaded elements
if (entry.target.classList.contains('lazy-load')) {
entry.target.classList.add('loaded');
}
// Handle counter animations
if (entry.target.hasAttribute('data-count')) {
animateCounter(entry.target);
observer.unobserve(entry.target);
}
}
});
};
const observer = new IntersectionObserver(observerCallback, observerOptions);
// Observe all elements with data-count
counters.forEach(counter => observer.observe(counter));
// Observe all lazy-load elements
document.querySelectorAll('.lazy-load').forEach(el => observer.observe(el));
// Observe all images with data-src
document.querySelectorAll('img[data-src]').forEach(img => observer.observe(img));
});
// Lazy Loading Implementation
function initLazyLoading() {
// Add skeleton loading to images while they load
document.querySelectorAll('img[data-src]').forEach(img => {
img.classList.add('skeleton');
// Set a low-quality placeholder
img.src = 'data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="40" height="40"%3E%3Crect width="40" height="40" fill="%23f0f0f0"/%3E%3C/svg%3E';
});
// Preload critical images
const criticalImages = document.querySelectorAll('img[data-critical="true"]');
criticalImages.forEach(img => {
if (img.dataset.src) {
img.src = img.dataset.src;
img.classList.remove('skeleton');
}
});
// Smooth scroll for anchor links with improved performance
const scrollLinks = document.querySelectorAll('a[href^="#"]');
scrollLinks.forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const target = document.querySelector(targetId);
if (target) {
const headerOffset = 80;
const elementPosition = target.getBoundingClientRect().top;
const offsetPosition = elementPosition + window.pageYOffset - headerOffset;
window.scrollTo({
top: offsetPosition,
behavior: 'smooth'
});
}
});
});
// Add active state to navigation based on scroll position
const sections = document.querySelectorAll('section[id]');
const navLinks = document.querySelectorAll('nav a[href^="#"]');
const highlightNav = () => {
const scrollY = window.pageYOffset;
sections.forEach(section => {
const sectionHeight = section.offsetHeight;
const sectionTop = section.offsetTop - 100;
const sectionId = section.getAttribute('id');
if (scrollY > sectionTop && scrollY <= sectionTop + sectionHeight) {
navLinks.forEach(link => {
link.classList.remove('text-indigo-600', 'font-semibold');
if (link.getAttribute('href') === `#${sectionId}`) {
link.classList.add('text-indigo-600', 'font-semibold');
}
});
}
});
};
window.addEventListener('scroll', highlightNav);
highlightNav(); // Call once on load
});
// Enhanced utility functions
const utils = {
debounce: (func, wait) => {
let timeout;
return function executedFunction(...args) {
const later = () => {
clearTimeout(timeout);
func(...args);
};
clearTimeout(timeout);
timeout = setTimeout(later, wait);
};
},
throttle: (func, limit) => {
let inThrottle;
return function() {
const args = arguments;
const context = this;
if (!inThrottle) {
func.apply(context, args);
inThrottle = true;
setTimeout(() => inThrottle = false, limit);
}
};
},
// Performance monitoring
measurePerformance: (name, fn) => {
const start = performance.now();
const result = fn();
const end = performance.now();
console.log(`${name} took ${end - start} milliseconds`);
return result;
},
// Loading state management
setLoading: (element, loading = true) => {
if (loading) {
element.disabled = true;
element.dataset.originalText = element.textContent;
element.innerHTML = '<span class="spinner inline-block w-4 h-4 mr-2"></span>Loading...';
} else {
element.disabled = false;
element.textContent = element.dataset.originalText || 'Submit';
}
}
};
// Enhanced local storage helper with compression
const storage = {
set: (key, value) => {
try {
const serialized = JSON.stringify(value);
localStorage.setItem(key, serialized);
return true;
} catch (e) {
console.error('Error saving to localStorage', e);
return false;
}
},
get: (key) => {
try {
const item = localStorage.getItem(key);
return item ? JSON.parse(item) : null;
} catch (e) {
console.error('Error reading from localStorage', e);
return null;
}
},
remove: (key) => {
try {
localStorage.removeItem(key);
return true;
} catch (e) {
console.error('Error removing from localStorage', e);
return false;
}
},
// Clear all storage
clear: () => {
try {
localStorage.clear();
return true;
} catch (e) {
console.error('Error clearing localStorage', e);
return false;
}
},
// Get storage usage
getUsage: () => {
let total = 0;
for (let key in localStorage) {
if (localStorage.hasOwnProperty(key)) {
total += localStorage[key].length + key.length;
}
}
return (total / 1024).toFixed(2) + ' KB';
}
};
// Service Worker registration for PWA capabilities
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/sw.js')
.then(registration => {
console.log('SW registered: ', registration);
})
.catch(registrationError => {
console.log('SW registration failed: ', registrationError);
});
});
}
|