-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
184 lines (158 loc) · 4.81 KB
/
Copy pathscript.js
File metadata and controls
184 lines (158 loc) · 4.81 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
/**
* Portfolio Website JavaScript
* Author: Anshika Singh
* Description: Interactive functionality for portfolio website
*/
// =================================
// SMOOTH SCROLLING
// =================================
class SmoothScroll {
constructor() {
this.init();
}
init() {
// Handle navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', this.handleClick.bind(this));
});
}
handleClick(e) {
e.preventDefault();
const target = document.querySelector(e.currentTarget.getAttribute('href'));
if (target) {
const headerHeight = document.querySelector('.header').offsetHeight;
const targetPosition = target.offsetTop - headerHeight - 20;
window.scrollTo({
top: targetPosition,
behavior: 'smooth'
});
}
}
}
// =================================
// SCROLL ANIMATIONS
// =================================
class ScrollAnimations {
constructor() {
this.observer = null;
this.init();
}
init() {
const options = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
this.observer = new IntersectionObserver(this.handleIntersect.bind(this), options);
this.observeElements();
}
observeElements() {
const elementsToAnimate = document.querySelectorAll('.section__title, .work__item, .about');
elementsToAnimate.forEach(el => this.observer.observe(el));
}
handleIntersect(entries) {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('fade-in');
this.observer.unobserve(entry.target);
}
});
}
}
// =================================
// HEADER EFFECTS
// =================================
class HeaderEffects {
constructor() {
this.header = document.querySelector('.header');
this.init();
}
init() {
window.addEventListener('scroll', this.handleScroll.bind(this));
}
handleScroll() {
if (window.scrollY > 100) {
this.header.style.background = 'rgba(230, 230, 230, 0.98)';
} else {
this.header.style.background = 'rgba(230, 230, 230, 0.95)';
}
}
}
// =================================
// 3D MODEL PLACEHOLDER
// =================================
// Space reserved for future 3D Spline model integration
// =================================
// PERFORMANCE MONITOR
// =================================
class PerformanceMonitor {
constructor() {
this.init();
}
init() {
// Monitor page load performance
window.addEventListener('load', () => {
this.logPerformance();
});
}
logPerformance() {
if ('performance' in window) {
const perfData = performance.getEntriesByType('navigation')[0];
console.log('Page Load Time:', perfData.loadEventEnd - perfData.loadEventStart, 'ms');
}
}
}
// =================================
// INITIALIZATION
// =================================
class PortfolioApp {
constructor() {
this.components = [];
this.init();
}
init() {
// Wait for DOM to be fully loaded
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', () => {
this.initComponents();
});
} else {
this.initComponents();
}
}
initComponents() {
// Initialize all components
this.components.push(new SmoothScroll());
this.components.push(new ScrollAnimations());
this.components.push(new HeaderEffects());
this.components.push(new PerformanceMonitor());
// Set body opacity for smooth entrance
document.body.style.opacity = '1';
console.log('Portfolio initialized successfully');
}
// Public method to destroy all components if needed
destroy() {
this.components.forEach(component => {
if (component.destroy && typeof component.destroy === 'function') {
component.destroy();
}
});
this.components = [];
}
}
// =================================
// APP INITIALIZATION
// =================================
const portfolio = new PortfolioApp();
// Handle window resize events
let resizeTimeout;
window.addEventListener('resize', () => {
clearTimeout(resizeTimeout);
resizeTimeout = setTimeout(() => {
// Space for future resize optimizations
console.log('Window resized');
}, 250);
});
// Export for potential module usage
if (typeof module !== 'undefined' && module.exports) {
module.exports = PortfolioApp;
}