-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
709 lines (586 loc) · 20.3 KB
/
Copy pathscript.js
File metadata and controls
709 lines (586 loc) · 20.3 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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
/**
* ALPHNOLOGY - Micro-interactions
* Vanilla JS ES6+ for maximum performance
*/
document.addEventListener('DOMContentLoaded', () => {
initCurrentYear();
initScrollReveal();
initTrustedCarousel();
initHeroCtaSelection();
initNavigation();
initSmoothScroll();
initContactForm();
initModals();
initThemeToggle();
});
/**
* Set Current Year in Footer
*/
function initCurrentYear() {
const yearElement = document.getElementById('currentYear');
if (yearElement) {
yearElement.textContent = new Date().getFullYear();
}
}
/**
* Scroll Reveal Animation
* Uses Intersection Observer for performance
*/
function initScrollReveal() {
const reveals = document.querySelectorAll('.reveal');
if (!reveals.length) return;
const observerOptions = {
root: null,
rootMargin: '0px 0px -50px 0px',
threshold: 0.1
};
const revealObserver = new IntersectionObserver((entries, observer) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('active');
observer.unobserve(entry.target);
}
});
}, observerOptions);
reveals.forEach(reveal => {
revealObserver.observe(reveal);
});
}
/**
* Trusted Clients Carousel
* Shows 3 at a time and rotates through the list
*/
function initTrustedCarousel() {
const carousel = document.getElementById('trustedCarousel');
if (!carousel) return;
const list = carousel.querySelector('.trusted__list');
const slots = Array.from(carousel.querySelectorAll('.trusted__client'));
if (!list || slots.length < 3) return;
const clients = [
{ name: 'Punto Intimo', logo: 'img/clients/punto_intimo.jpg' },
{ name: 'Benestare', logo: 'img/clients/benestare.jpg' },
{ name: 'AgriFEL', logo: 'img/clients/agrifel.jpg' },
{ name: 'Lab. Arvelo', logo: 'img/clients/lab_arvelo.jpg' },
{ name: 'Grupo Nobe', logo: 'img/clients/grupo_nobe.jpg' },
{ name: 'Uteco', logo: 'img/clients/uteco.jpg' },
{ name: 'Trace', logo: 'img/clients/trace.png' },
{ name: 'Grupo Sanel', logo: 'img/clients/grupo_sanel.png' },
{ name: 'Bravo', logo: 'img/clients/bravo.png' },
{ name: 'Coral Hospitality Corp', logo: 'img/clients/chc.svg' }
];
let startIndex = 0;
let timerId = null;
const render = () => {
slots.forEach((slot, index) => {
const client = clients[(startIndex + index) % clients.length];
const img = slot.querySelector('img');
const name = slot.querySelector('.trusted__name');
if (img) {
img.src = client.logo;
img.alt = client.name;
}
if (name) {
name.textContent = client.name;
}
});
};
const rotate = () => {
list.classList.add('is-switching');
window.setTimeout(() => {
startIndex = (startIndex + 3) % clients.length;
render();
list.classList.remove('is-switching');
}, 250);
};
const start = () => {
if (timerId) return;
timerId = window.setInterval(rotate, 3500);
};
const stop = () => {
if (timerId) {
window.clearInterval(timerId);
timerId = null;
}
};
render();
start();
list.addEventListener('mouseenter', stop);
list.addEventListener('mouseleave', start);
window.addEventListener('visibilitychange', () => {
if (document.hidden) {
stop();
} else {
start();
}
});
}
/**
* Hero CTA Selected State
* Keeps the last selected option highlighted
*/
function initHeroCtaSelection() {
const heroCta = document.querySelector('.hero__cta');
if (!heroCta) return;
const buttons = Array.from(heroCta.querySelectorAll('.btn'));
const targets = buttons
.map(button => {
const href = button.getAttribute('href');
if (!href || !href.startsWith('#')) return null;
const section = document.querySelector(href);
if (!section) return null;
return { button, section };
})
.filter(Boolean);
if (!targets.length) return;
const setSelected = (button) => {
buttons.forEach(item => item.classList.remove('is-selected'));
if (button) button.classList.add('is-selected');
};
buttons.forEach(button => {
button.addEventListener('click', () => {
setSelected(button);
});
});
const updateFromScroll = () => {
const scrollY = window.pageYOffset;
const navHeight = document.getElementById('nav').offsetHeight;
let current = null;
targets.forEach(({ button, section }) => {
const top = section.offsetTop - navHeight - 40;
const bottom = top + section.offsetHeight;
if (scrollY >= top && scrollY < bottom) {
current = button;
}
});
if (current) {
setSelected(current);
}
};
updateFromScroll();
window.addEventListener('scroll', updateFromScroll, { passive: true });
}
/**
* Navigation Functionality
* - Mobile menu toggle
* - Scroll-based styling
* - Active link highlighting
*/
function initNavigation() {
const nav = document.getElementById('nav');
const navToggle = document.getElementById('navToggle');
const navMenu = document.getElementById('navMenu');
const navLinks = document.querySelectorAll('.nav__link');
// Mobile menu toggle
if (navToggle && navMenu) {
const closeMenu = () => {
navToggle.classList.remove('active');
navMenu.classList.remove('active');
navToggle.setAttribute('aria-expanded', 'false');
document.body.style.overflow = '';
};
navToggle.addEventListener('click', () => {
const isOpen = navMenu.classList.toggle('active');
navToggle.classList.toggle('active');
navToggle.setAttribute('aria-expanded', String(isOpen));
document.body.style.overflow = isOpen ? 'hidden' : '';
});
navLinks.forEach(link => {
link.addEventListener('click', closeMenu);
});
document.addEventListener('keydown', (e) => {
if (e.key === 'Escape' && navMenu.classList.contains('active')) {
closeMenu();
}
});
}
// Scroll-based navigation styling
let lastScroll = 0;
const scrollThreshold = 50;
window.addEventListener('scroll', () => {
const currentScroll = window.pageYOffset;
// Add/remove scrolled class
if (currentScroll > scrollThreshold) {
nav.classList.add('nav--scrolled');
} else {
nav.classList.remove('nav--scrolled');
}
lastScroll = currentScroll;
}, { passive: true });
// Highlight active section in navigation
const sections = document.querySelectorAll('section[id]');
const highlightNav = () => {
const scrollY = window.pageYOffset;
sections.forEach(section => {
const sectionTop = section.offsetTop - 100;
const sectionHeight = section.offsetHeight;
const sectionId = section.getAttribute('id');
if (scrollY >= sectionTop && scrollY < sectionTop + sectionHeight) {
navLinks.forEach(link => {
link.classList.remove('active');
if (link.getAttribute('href') === `#${sectionId}`) {
link.classList.add('active');
}
});
}
});
};
window.addEventListener('scroll', highlightNav, { passive: true });
}
/**
* Smooth Scroll for Anchor Links
*/
function initSmoothScroll() {
const links = document.querySelectorAll('a[href^="#"]');
links.forEach(link => {
link.addEventListener('click', (e) => {
const href = link.getAttribute('href');
// Skip if it's just "#"
if (href === '#') return;
const target = document.querySelector(href);
if (target) {
e.preventDefault();
const navHeight = document.getElementById('nav').offsetHeight;
const targetPosition = target.offsetTop - navHeight - 20;
window.scrollTo({
top: targetPosition,
behavior: 'smooth'
});
// Update URL without triggering scroll
history.pushState(null, null, href);
}
});
});
}
/**
* Contact Form Handling
* Basic validation and submission feedback
*/
function initContactForm() {
const form = document.getElementById('contactForm');
if (!form) return;
form.addEventListener('submit', async (e) => {
e.preventDefault();
const submitBtn = form.querySelector('button[type="submit"]');
const originalText = submitBtn.innerHTML;
// Show loading state
submitBtn.disabled = true;
submitBtn.innerHTML = `
<svg class="spinner" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="10" stroke-dasharray="32" stroke-dashoffset="32">
<animate attributeName="stroke-dashoffset" values="32;0" dur="1s" repeatCount="indefinite"/>
</circle>
</svg>
Enviando...
`;
// Collect form data
const formData = new FormData(form);
const data = Object.fromEntries(formData.entries());
try {
await submitContactForm(data);
// Success state
submitBtn.innerHTML = `
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M20 6L9 17l-5-5"/>
</svg>
Enviado
`;
submitBtn.style.background = 'var(--color-secondary)';
// Reset form
form.reset();
// Show success message
showNotification('Mensaje enviado correctamente. Te contactaremos pronto.', 'success');
// Reset button after delay
setTimeout(() => {
submitBtn.disabled = false;
submitBtn.innerHTML = originalText;
submitBtn.style.background = '';
}, 3000);
} catch (error) {
// Error state
submitBtn.innerHTML = originalText;
submitBtn.disabled = false;
showNotification('Error al enviar el mensaje. Intenta nuevamente.', 'error');
}
});
// Input focus animations
const inputs = form.querySelectorAll('.form__input');
inputs.forEach(input => {
input.addEventListener('focus', () => {
input.parentElement.classList.add('focused');
});
input.addEventListener('blur', () => {
input.parentElement.classList.remove('focused');
});
});
}
const CONTACT_API_URL = (window.location.hostname === 'localhost' || window.location.hostname === '127.0.0.1')
? 'http://localhost:8080/api/contact'
: 'https://contact-api.alphnology.com/api/contact';
async function submitContactForm(data) {
const response = await fetch(CONTACT_API_URL, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(data),
});
const result = await response.json();
if (!response.ok || !result.success) {
throw new Error(result.message || 'Error al enviar el mensaje');
}
return result;
}
/**
* Show Notification Toast
*/
function showNotification(message, type = 'info') {
// 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>${message}</span>
<button class="notification__close" aria-label="Cerrar">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M18 6L6 18M6 6l12 12"/>
</svg>
</button>
`;
// Add styles dynamically if not present
if (!document.getElementById('notification-styles')) {
const styles = document.createElement('style');
styles.id = 'notification-styles';
styles.textContent = `
.notification {
position: fixed;
bottom: 24px;
right: 24px;
display: flex;
align-items: center;
gap: 12px;
padding: 16px 20px;
background: var(--bg-elevated);
border: 1px solid var(--border-default);
border-radius: var(--radius-lg);
color: var(--text-primary);
font-size: 14px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
z-index: 9999;
animation: slideIn 0.3s ease;
}
.notification--success {
border-color: var(--color-secondary);
}
.notification--error {
border-color: #ef4444;
}
.notification__close {
padding: 4px;
color: var(--text-tertiary);
cursor: pointer;
transition: color 0.2s;
}
.notification__close:hover {
color: var(--text-primary);
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideOut {
from {
opacity: 1;
transform: translateY(0);
}
to {
opacity: 0;
transform: translateY(20px);
}
}
`;
document.head.appendChild(styles);
}
// Add to DOM
document.body.appendChild(notification);
// Close button handler
const closeBtn = notification.querySelector('.notification__close');
closeBtn.addEventListener('click', () => {
notification.style.animation = 'slideOut 0.3s ease forwards';
setTimeout(() => notification.remove(), 300);
});
// Auto-remove after 5 seconds
setTimeout(() => {
if (notification.parentElement) {
notification.style.animation = 'slideOut 0.3s ease forwards';
setTimeout(() => notification.remove(), 300);
}
}, 5000);
}
/**
* Parallax Effect for Hero (subtle)
*/
function initParallax() {
const hero = document.querySelector('.hero__gradient');
if (!hero || window.matchMedia('(prefers-reduced-motion: reduce)').matches) return;
window.addEventListener('scroll', () => {
const scrolled = window.pageYOffset;
const rate = scrolled * 0.3;
hero.style.transform = `translateY(${rate}px)`;
}, { passive: true });
}
// Initialize parallax on load
window.addEventListener('load', initParallax);
/**
* Typing Effect for Hero (optional enhancement)
* Uncomment to enable
*/
/*
function initTypingEffect() {
const element = document.querySelector('.hero__title-gradient');
if (!element) return;
const text = element.textContent;
element.textContent = '';
element.style.borderRight = '2px solid var(--color-primary)';
let i = 0;
const typeWriter = () => {
if (i < text.length) {
element.textContent += text.charAt(i);
i++;
setTimeout(typeWriter, 50);
} else {
element.style.borderRight = 'none';
}
};
// Start after a delay
setTimeout(typeWriter, 1000);
}
*/
/**
* Cursor Glow Effect (for desktop)
* Creates a subtle glow that follows the cursor
*/
function initCursorGlow() {
if ('ontouchstart' in window) return;
if (window.matchMedia('(prefers-reduced-motion: reduce)').matches) return;
const glow = document.createElement('div');
glow.className = 'cursor-glow';
const glowStyles = document.createElement('style');
glowStyles.textContent = `
.cursor-glow {
position: fixed;
width: 400px;
height: 400px;
pointer-events: none;
background: radial-gradient(circle, rgba(248, 141, 42, 0.06), transparent 70%);
border-radius: 50%;
transform: translate(-50%, -50%);
z-index: 0;
transition: opacity 0.3s;
opacity: 0;
}
.cursor-glow.active {
opacity: 1;
}
`;
document.head.appendChild(glowStyles);
document.body.appendChild(glow);
let mouseX = 0, mouseY = 0;
let glowX = 0, glowY = 0;
document.addEventListener('mousemove', (e) => {
mouseX = e.clientX;
mouseY = e.clientY;
glow.classList.add('active');
});
document.addEventListener('mouseleave', () => {
glow.classList.remove('active');
});
// Smooth animation
function animate() {
glowX += (mouseX - glowX) * 0.1;
glowY += (mouseY - glowY) * 0.1;
glow.style.left = `${glowX}px`;
glow.style.top = `${glowY}px`;
requestAnimationFrame(animate);
}
animate();
}
// Initialize cursor glow on load
window.addEventListener('load', initCursorGlow);
/**
* Modal Functionality
* Open/close product modals
*/
function initModals() {
const modalTriggers = document.querySelectorAll('[data-modal]');
const modals = document.querySelectorAll('.modal');
const closeButtons = document.querySelectorAll('[data-close-modal]');
// Open modal
modalTriggers.forEach(trigger => {
trigger.addEventListener('click', (e) => {
e.preventDefault();
const modalId = trigger.getAttribute('data-modal');
const modal = document.getElementById(modalId);
if (modal) {
openModal(modal);
}
});
});
// Close modal with close button or overlay
closeButtons.forEach(button => {
button.addEventListener('click', (e) => {
const modal = button.closest('.modal');
if (modal) {
closeModal(modal);
}
});
});
// Close modal with Escape key
document.addEventListener('keydown', (e) => {
if (e.key === 'Escape') {
const activeModal = document.querySelector('.modal.active');
if (activeModal) {
closeModal(activeModal);
}
}
});
}
function openModal(modal) {
modal.classList.add('active');
document.body.style.overflow = 'hidden';
// Focus trap
const focusableElements = modal.querySelectorAll(
'button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])'
);
if (focusableElements.length) {
focusableElements[0].focus();
}
}
function closeModal(modal) {
modal.classList.remove('active');
document.body.style.overflow = '';
}
/**
* Dark / Light Theme Toggle
* Persists to localStorage. Respects prefers-color-scheme as default.
*/
function initThemeToggle() {
const btn = document.getElementById('themeToggle');
if (!btn) return;
btn.addEventListener('click', () => {
const current = document.documentElement.getAttribute('data-theme') || 'dark';
const next = current === 'dark' ? 'light' : 'dark';
document.documentElement.classList.add('theme-changing');
document.documentElement.setAttribute('data-theme', next);
localStorage.setItem('theme', next);
btn.setAttribute('aria-label', next === 'dark' ? 'Cambiar a modo claro' : 'Cambiar a modo oscuro');
setTimeout(() => document.documentElement.classList.remove('theme-changing'), 350);
});
const current = document.documentElement.getAttribute('data-theme') || 'dark';
btn.setAttribute('aria-label', current === 'dark' ? 'Cambiar a modo claro' : 'Cambiar a modo oscuro');
}