-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.js
23 lines (20 loc) · 847 Bytes
/
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
// Intentar reproducir el video automáticamente
document.addEventListener('DOMContentLoaded', function () {
var video = document.getElementById('background-video');
// Intentar reproducir el video cuando la página carga
var playPromise = video.play();
if (playPromise !== undefined) {
playPromise.then(function () {
// Reproducción automática exitosa
}).catch(function (error) {
// Fallo en la reproducción automática, intentar con un evento de interacción
document.addEventListener('click', function () {
video.play();
});
});
}
});
// Toggle del menú de navegación en móvil
document.getElementById('nav-toggle').addEventListener('click', function () {
document.getElementById('nav-menu').classList.toggle('active');
});