-
Notifications
You must be signed in to change notification settings - Fork 0
/
scripts.js
89 lines (74 loc) · 3.02 KB
/
scripts.js
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
// JavaScript para actualizar el año en el copyright
document.addEventListener('DOMContentLoaded', function () {
document.getElementById('year').textContent = new Date().getFullYear();
});
// Mostrar pantalla de carga y redirigir después de 2 segundos
function showLoadingScreen(event) {
event.preventDefault(); // Previene la navegación inmediata
document.getElementById('loading-screen').style.display = 'block';
setTimeout(function() {
window.location.href = event.target.href;
}, 2000);
}
// Agregar el evento showLoadingScreen a todos los enlaces del menú de navegación
document.querySelectorAll('nav ul li a').forEach(function(link) {
link.addEventListener('click', showLoadingScreen);
});
// Actualizar el contador de caracteres en la página de contacto
const messageField = document.getElementById('message');
const charCount = document.getElementById('charCount');
if (messageField && charCount) {
messageField.addEventListener('input', function() {
const currentLength = messageField.value.length;
charCount.textContent = `${currentLength}/500 caracteres`;
});
}
// Validación del email en el formulario de contacto
function validateEmail(email) {
const re = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
return re.test(String(email).toLowerCase());
}
// Enviar el formulario de contacto con EmailJS
function sendEmail(event) {
event.preventDefault(); // Evita que el formulario se envíe de manera tradicional
const email = document.getElementById('email').value;
if (!validateEmail(email)) {
alert('Por favor, introduce un correo electrónico válido.');
return;
}
emailjs.sendForm('service_4lisjg5', 'template_pdt1o0q', event.target)
.then(function(response) {
alert("Correo enviado exitosamente!");
}, function(error) {
alert("Hubo un error al enviar el correo: " + error);
});
}
// Inicializa EmailJS
(function() {
emailjs.init("C0kE4FBQADKTix4py");
})();
// Agregar el evento de envío al formulario de contacto si existe
const contactForm = document.getElementById('contact-form');
if (contactForm) {
contactForm.addEventListener('submit', sendEmail);
}
document.addEventListener('DOMContentLoaded', function () {
const coll = document.querySelectorAll('.collapsible');
// Asegúrate de que las pestañas estén expandidas por defecto
coll.forEach(function(btn) {
const content = btn.nextElementSibling;
if (btn.classList.contains('active')) {
content.style.maxHeight = content.scrollHeight + "px"; // Mantener expandido
}
// Hacer clic para expandir o colapsar
btn.addEventListener('click', function() {
this.classList.toggle('active');
const content = this.nextElementSibling;
if (content.style.maxHeight) {
content.style.maxHeight = null;
} else {
content.style.maxHeight = content.scrollHeight + "px";
}
});
});
});