Spaces:
Running
Running
File size: 12,887 Bytes
e91c622 |
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 |
// Portfolio Website JavaScript
// Interactive functionality for navigation, theme toggle, and user experience
(function() {
'use strict';
// DOM Elements
const themeToggle = document.getElementById('themeToggle');
const navToggle = document.querySelector('.nav-toggle');
const navLinks = document.querySelector('.nav-links');
const header = document.querySelector('.site-header');
const resumeBtn = document.getElementById('resumeBtn');
// Theme Management
class ThemeManager {
constructor() {
this.currentTheme = localStorage.getItem('theme') || 'light';
this.init();
}
init() {
this.applyTheme(this.currentTheme);
this.updateThemeIcon();
if (themeToggle) {
themeToggle.addEventListener('click', () => this.toggleTheme());
}
}
toggleTheme() {
this.currentTheme = this.currentTheme === 'light' ? 'dark' : 'light';
this.applyTheme(this.currentTheme);
this.updateThemeIcon();
localStorage.setItem('theme', this.currentTheme);
}
applyTheme(theme) {
document.documentElement.setAttribute('data-theme', theme);
}
updateThemeIcon() {
if (themeToggle) {
themeToggle.innerHTML = this.currentTheme === 'light' ? 'π' : 'βοΈ';
themeToggle.setAttribute('aria-label',
`Switch to ${this.currentTheme === 'light' ? 'dark' : 'light'} mode`);
}
}
}
// Navigation Management
class NavigationManager {
constructor() {
this.isMenuOpen = false;
this.init();
}
init() {
// Mobile menu toggle
if (navToggle && navLinks) {
navToggle.addEventListener('click', () => this.toggleMobileMenu());
}
// Close mobile menu when clicking on links
if (navLinks) {
navLinks.addEventListener('click', (e) => {
if (e.target.tagName === 'A') {
this.closeMobileMenu();
}
});
}
// Close mobile menu when clicking outside
document.addEventListener('click', (e) => {
if (this.isMenuOpen && !e.target.closest('.nav')) {
this.closeMobileMenu();
}
});
// Smooth scrolling for anchor links
this.initSmoothScrolling();
// Header scroll effect
this.initHeaderScrollEffect();
}
toggleMobileMenu() {
this.isMenuOpen = !this.isMenuOpen;
navLinks.classList.toggle('active', this.isMenuOpen);
navToggle.setAttribute('aria-expanded', this.isMenuOpen.toString());
navToggle.innerHTML = this.isMenuOpen ? 'β' : 'β°';
}
closeMobileMenu() {
this.isMenuOpen = false;
navLinks.classList.remove('active');
navToggle.setAttribute('aria-expanded', 'false');
navToggle.innerHTML = 'β°';
}
initSmoothScrolling() {
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', (e) => {
const href = anchor.getAttribute('href');
if (href === '#' || href === '#top') {
e.preventDefault();
window.scrollTo({ top: 0, behavior: 'smooth' });
return;
}
const target = document.querySelector(href);
if (target) {
e.preventDefault();
const headerHeight = header ? header.offsetHeight : 0;
const targetPosition = target.offsetTop - headerHeight - 20;
window.scrollTo({
top: targetPosition,
behavior: 'smooth'
});
}
});
});
}
initHeaderScrollEffect() {
if (!header) return;
let lastScrollY = window.scrollY;
let ticking = false;
const updateHeader = () => {
const scrollY = window.scrollY;
if (scrollY > 100) {
header.style.background = 'rgba(255, 255, 255, 0.95)';
header.style.backdropFilter = 'blur(10px)';
} else {
header.style.background = '';
header.style.backdropFilter = '';
}
lastScrollY = scrollY;
ticking = false;
};
const requestTick = () => {
if (!ticking) {
requestAnimationFrame(updateHeader);
ticking = true;
}
};
window.addEventListener('scroll', requestTick, { passive: true });
}
}
// Resume Download Manager
class ResumeManager {
constructor() {
this.init();
}
init() {
if (resumeBtn) {
resumeBtn.addEventListener('click', (e) => this.handleResumeDownload(e));
}
}
handleResumeDownload(e) {
e.preventDefault();
// Show loading state
const originalText = resumeBtn.innerHTML;
resumeBtn.innerHTML = 'π Downloading...';
resumeBtn.classList.add('loading');
// Create download link
const link = document.createElement('a');
link.href = 'Rakesh Resume.pdf';
link.download = 'Rakesh_Kumar_Resume.pdf';
link.style.display = 'none';
document.body.appendChild(link);
// Trigger download
try {
link.click();
// Track download (if analytics is available)
if (typeof gtag !== 'undefined') {
gtag('event', 'download', {
'event_category': 'Resume',
'event_label': 'PDF Download'
});
}
// Show success message
setTimeout(() => {
resumeBtn.innerHTML = 'β
Downloaded!';
setTimeout(() => {
resumeBtn.innerHTML = originalText;
resumeBtn.classList.remove('loading');
}, 2000);
}, 500);
} catch (error) {
console.error('Download failed:', error);
resumeBtn.innerHTML = 'β Download Failed';
setTimeout(() => {
resumeBtn.innerHTML = originalText;
resumeBtn.classList.remove('loading');
}, 2000);
} finally {
document.body.removeChild(link);
}
}
}
// Animation and Intersection Observer
class AnimationManager {
constructor() {
this.init();
}
init() {
// Intersection Observer for fade-in animations
if ('IntersectionObserver' in window) {
this.initScrollAnimations();
}
// Typing animation for hero subtitle
this.initTypingAnimation();
}
initScrollAnimations() {
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
}, observerOptions);
// Observe elements for animation
document.querySelectorAll('.card, .timeline li, .case').forEach(el => {
el.style.opacity = '0';
el.style.transform = 'translateY(30px)';
el.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
observer.observe(el);
});
}
initTypingAnimation() {
const subtitle = document.querySelector('.hero-subtitle');
if (!subtitle) return;
const text = subtitle.textContent;
subtitle.textContent = '';
subtitle.style.borderRight = '2px solid var(--accent-primary)';
let i = 0;
const typeWriter = () => {
if (i < text.length) {
subtitle.textContent += text.charAt(i);
i++;
setTimeout(typeWriter, 50);
} else {
// Remove cursor after typing is complete
setTimeout(() => {
subtitle.style.borderRight = 'none';
}, 1000);
}
};
// Start typing animation after a short delay
setTimeout(typeWriter, 1000);
}
}
// Utility Functions
class Utils {
static debounce(func, wait) {
let timeout;
return function executedFunction(...args) {
const later = () => {
clearTimeout(timeout);
func(...args);
};
clearTimeout(timeout);
timeout = setTimeout(later, wait);
};
}
static 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);
}
};
}
static isElementInViewport(el) {
const rect = el.getBoundingClientRect();
return (
rect.top >= 0 &&
rect.left >= 0 &&
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
rect.right <= (window.innerWidth || document.documentElement.clientWidth)
);
}
}
// Performance Monitoring
class PerformanceMonitor {
constructor() {
this.init();
}
init() {
// Log page load performance
window.addEventListener('load', () => {
if ('performance' in window) {
const perfData = performance.getEntriesByType('navigation')[0];
console.log('Page Load Time:', perfData.loadEventEnd - perfData.fetchStart, 'ms');
}
});
}
}
// Error Handling
class ErrorHandler {
constructor() {
this.init();
}
init() {
window.addEventListener('error', (e) => {
console.error('JavaScript Error:', e.error);
// Could send to analytics or error reporting service
});
window.addEventListener('unhandledrejection', (e) => {
console.error('Unhandled Promise Rejection:', e.reason);
// Could send to analytics or error reporting service
});
}
}
// Initialize Application
class App {
constructor() {
this.init();
}
init() {
// Wait for DOM to be ready
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', () => this.start());
} else {
this.start();
}
}
start() {
try {
// Initialize all managers
new ThemeManager();
new NavigationManager();
new ResumeManager();
new AnimationManager();
new PerformanceMonitor();
new ErrorHandler();
console.log('Portfolio website initialized successfully!');
} catch (error) {
console.error('Failed to initialize portfolio:', error);
}
}
}
// Start the application
new App();
})();
// Export for potential module use
if (typeof module !== 'undefined' && module.exports) {
module.exports = { App };
} |