-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
403 lines (354 loc) · 13.1 KB
/
Copy pathscript.js
File metadata and controls
403 lines (354 loc) · 13.1 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
// Hamburger Menu Toggle
const navToggle = document.querySelector('.nav-toggle');
const navLinks = document.querySelector('.nav-links');
const body = document.body;
navToggle.addEventListener('click', (e) => {
e.stopPropagation(); // Prevent click from bubbling to document
navToggle.classList.toggle('active');
navLinks.classList.toggle('active');
body.classList.toggle('no-scroll'); // Prevent background scrolling when menu is open
});
// Close menu when clicking outside
document.addEventListener('click', (e) => {
if (!navLinks.contains(e.target) && !navToggle.contains(e.target)) {
navToggle.classList.remove('active');
navLinks.classList.remove('active');
body.classList.remove('no-scroll');
}
});
// Close menu when clicking a link
document.querySelectorAll('.nav-links a').forEach(link => {
link.addEventListener('click', () => {
navToggle.classList.remove('active');
navLinks.classList.remove('active');
body.classList.remove('no-scroll');
});
});
// Optional: Close menu when scrolling
let lastScrollTop = 0;
window.addEventListener('scroll', () => {
const scrollTop = window.pageYOffset || document.documentElement.scrollTop;
if (scrollTop > lastScrollTop) {
navToggle.classList.remove('active');
navLinks.classList.remove('active');
}
lastScrollTop = scrollTop;
});
// Add scroll padding for fixed header
document.documentElement.style.setProperty(
'--scroll-padding',
document.querySelector('nav').offsetHeight + 'px'
);
// Smooth Scroll Function
function smoothScroll(targetId) {
const targetSection = document.getElementById(targetId);
const headerHeight = document.querySelector('nav').offsetHeight;
if (targetSection) {
const targetPosition = targetSection.offsetTop - headerHeight;
window.scrollTo({
top: targetPosition,
behavior: 'smooth'
});
}
}
// Handle Hero Buttons
document.addEventListener('DOMContentLoaded', () => {
// Menangani kedua tombol dengan cara yang sama
document.querySelectorAll('.hero-buttons a').forEach(button => {
button.addEventListener('click', (e) => {
e.preventDefault();
const targetId = button.getAttribute('data-target');
smoothScroll(targetId);
});
});
});
// Intersection Observer yang lebih cepat
const sectionObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
requestAnimationFrame(() => {
entry.target.style.opacity = '1';
});
} else {
requestAnimationFrame(() => {
entry.target.style.opacity = '0.99'; // Nilai opacity yang lebih tinggi
});
}
});
}, {
threshold: 0.05, // Threshold lebih kecil untuk trigger lebih cepat
rootMargin: '-10px'
});
// Inisialisasi yang lebih cepat
document.addEventListener('DOMContentLoaded', () => {
document.querySelectorAll('section').forEach(section => {
// Transisi opacity yang lebih cepat
section.style.transition = 'opacity 0.4s ease-out'; // Durasi dikurangi
// Set background secara langsung
if (section.id === 'portofolio' || section.id === 'kontak' || section.id === 'tentang') {
section.style.backgroundColor = '#ffffff';
}
sectionObserver.observe(section);
});
});
// AOS initialization dengan konfigurasi yang lebih halus
AOS.init({
duration: 1000,
easing: 'ease-in-out',
once: false,
mirror: true,
offset: 100,
anchorPlacement: 'top-bottom',
disable: false
});
// Scroll Animations dengan arah yang berbeda
function initScrollAnimations() {
const elements = document.querySelectorAll('.fade-up, .fade-left, .fade-right, .scale-up');
const fadeAnimationObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('active');
if (entry.target.classList.contains('fade-up')) {
entry.target.style.transform = 'translateY(0)';
} else if (entry.target.classList.contains('fade-left')) {
entry.target.style.transform = 'translateX(0)';
} else if (entry.target.classList.contains('fade-right')) {
entry.target.style.transform = 'translateX(0)';
} else if (entry.target.classList.contains('scale-up')) {
entry.target.style.transform = 'scale(1)';
}
entry.target.style.opacity = '1';
} else {
entry.target.classList.remove('active');
if (entry.target.classList.contains('fade-up')) {
entry.target.style.transform = 'translateY(30px)';
} else if (entry.target.classList.contains('fade-left')) {
entry.target.style.transform = 'translateX(-30px)';
} else if (entry.target.classList.contains('fade-right')) {
entry.target.style.transform = 'translateX(30px)';
} else if (entry.target.classList.contains('scale-up')) {
entry.target.style.transform = 'scale(0.95)';
}
entry.target.style.opacity = '0';
}
});
}, {
threshold: 0.2,
rootMargin: '-20px'
});
elements.forEach(element => {
element.style.transition = 'all 0.6s cubic-bezier(0.4, 0, 0.2, 1)';
fadeAnimationObserver.observe(element);
});
}
// Back to Top Button
function initBackToTop() {
const backToTop = document.createElement('div');
backToTop.classList.add('back-to-top');
backToTop.innerHTML = '<i class="fas fa-arrow-up"></i>';
document.body.appendChild(backToTop);
window.addEventListener('scroll', () => {
if (window.scrollY > 300) {
backToTop.classList.add('visible');
} else {
backToTop.classList.remove('visible');
}
});
backToTop.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
}
// Progress Bar
function initScrollProgressBar() {
const progressBar = document.createElement('div');
progressBar.style.cssText = `
position: fixed;
top: 0;
left: 0;
width: 0;
height: 3px;
background: #007bff;
z-index: 1001;
transition: width 0.2s ease;
`;
document.body.appendChild(progressBar);
window.addEventListener('scroll', () => {
const totalScroll = document.documentElement.scrollHeight - window.innerHeight;
const progress = (window.scrollY / totalScroll) * 100;
progressBar.style.width = `${progress}%`;
});
}
// Header Transparency on Scroll
function initHeaderTransparency() {
const header = document.querySelector('nav');
const transparencyThreshold = 100; // Scroll threshold in pixels
window.addEventListener('scroll', () => {
if (window.scrollY > transparencyThreshold) {
header.classList.add('transparent');
} else {
header.classList.remove('transparent');
}
});
}
// Initialize everything when DOM is loaded
document.addEventListener('DOMContentLoaded', () => {
// Add animation classes to elements
document.querySelectorAll('.service-card').forEach((card, index) => {
card.classList.add('fade-up');
card.style.transitionDelay = `${index * 0.1}s`;
});
document.querySelectorAll('.portfolio-item').forEach((item, index) => {
item.classList.add(index % 2 === 0 ? 'fade-left' : 'fade-right');
item.style.transitionDelay = `${index * 0.1}s`;
});
document.querySelector('.hero h1').classList.add('fade-up');
document.querySelector('.hero p').classList.add('fade-up');
document.querySelector('.hero .cta-button').classList.add('scale-up');
// Initialize all features
initScrollAnimations();
initBackToTop();
initScrollProgressBar();
initHeaderTransparency();
initButtonActions();
});
// Scroll Progress
window.addEventListener('scroll', () => {
const winScroll = document.body.scrollTop || document.documentElement.scrollTop;
const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
const scrolled = (winScroll / height) * 100;
document.querySelector('.scroll-progress').style.backgroundSize = scrolled + '% 100%';
});
// Tambahkan event listener untuk scroll
let scrollTimeout;
window.addEventListener('scroll', () => {
if (scrollTimeout) {
window.cancelAnimationFrame(scrollTimeout);
}
scrollTimeout = window.requestAnimationFrame(() => {
const scrolled = window.scrollY;
const windowHeight = window.innerHeight;
document.querySelectorAll('[data-aos]').forEach(element => {
const elementTop = element.getBoundingClientRect().top + scrolled;
const elementVisible = 150; // Meningkatkan visibility threshold
if (scrolled > elementTop - windowHeight + elementVisible) {
element.classList.add('aos-animate');
} else {
element.classList.remove('aos-animate');
}
});
});
});
// Fungsi untuk animasi counting
function animateCounter(element, target, duration = 2000) {
let start = 0;
const increment = target / (duration / 16); // 16ms adalah ~60fps
function updateCount() {
start += increment;
if (start >= target) {
element.textContent = target;
return;
}
element.textContent = Math.floor(start);
requestAnimationFrame(updateCount);
}
updateCount();
}
// Observer untuk trigger animasi counting
const statsObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const statItems = entry.target.querySelectorAll('.stat-item h3');
statItems.forEach(item => {
const target = parseInt(item.getAttribute('data-target'));
if (!item.classList.contains('counted')) {
animateCounter(item, target);
item.classList.add('counted');
}
});
statsObserver.unobserve(entry.target);
}
});
}, {
threshold: 0.5
});
// Inisialisasi observer untuk stats section
document.addEventListener('DOMContentLoaded', () => {
const statsSection = document.querySelector('.about-stats');
if (statsSection) {
statsObserver.observe(statsSection);
}
// Reset counting saat scroll ke atas
window.addEventListener('scroll', () => {
const statsSection = document.querySelector('.about-stats');
if (statsSection) {
const rect = statsSection.getBoundingClientRect();
if (rect.top > window.innerHeight) {
const statItems = statsSection.querySelectorAll('.stat-item h3');
statItems.forEach(item => {
item.classList.remove('counted');
item.textContent = '0';
});
statsObserver.observe(statsSection);
}
}
});
});
// Smooth scroll untuk link portfolio
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
window.scrollTo({
top: target.offsetTop - 80, // 80px offset untuk navbar
behavior: 'smooth'
});
});
});
// Modal functionality
document.addEventListener('DOMContentLoaded', function() {
// Mendapatkan semua elemen yang diperlukan
const modal = document.getElementById('projectModal');
const detailButtons = document.querySelectorAll('.btn-detail');
const closeButton = document.querySelector('.close-modal');
// Event listener untuk setiap tombol detail
detailButtons.forEach(button => {
button.addEventListener('click', function() {
console.log('Button clicked'); // Debug log
openModal();
});
});
// Event listener untuk tombol close
if (closeButton) {
closeButton.addEventListener('click', closeModal);
}
// Event listener untuk klik di luar modal
window.addEventListener('click', function(event) {
if (event.target === modal) {
closeModal();
}
});
// Event listener untuk tombol ESC
document.addEventListener('keydown', function(event) {
if (event.key === 'Escape') {
closeModal();
}
});
// Fungsi untuk membuka modal
function openModal() {
console.log('Opening modal'); // Debug log
if (modal) {
modal.style.display = 'flex';
document.body.style.overflow = 'hidden';
}
}
// Fungsi untuk menutup modal
function closeModal() {
if (modal) {
modal.style.display = 'none';
document.body.style.overflow = 'auto';
}
}
});