-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
44 lines (36 loc) · 951 Bytes
/
script.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
// Funcion del menu
function openMenu(){
document.querySelector("main").classList.toggle("openedMenu");
}
// Script para el Slider
imgs = [
"images/netflix.webp",
"images/redes.webp",
"images/videogames-keyboard.jpeg",
"images/videogames.webp"
]
document.Imagenes.src = imgs[0];
contador = 0;
var intervalo = setInterval(MoverDerecha,2500);
function MoverIzquierda() {
clearInterval(intervalo);
contador--;
if (contador<0){
contador=3
}
document.Imagenes.src = imgs[contador]
intervalo = setInterval(MoverDerecha,2500);
}
function MoverDerecha() {
clearInterval(intervalo);
contador++;
if (contador>3){
contador=0
}
document.Imagenes.src = imgs[contador]
intervalo = setInterval(MoverDerecha,2500);
}
// Contratar ahora (Redireccion)
function redireccionar(cantidadMegas){
window.location.href = "subpag/contratar.html?cantidadMegas=" + cantidadMegas;
}