-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbanner.js
50 lines (40 loc) · 1.4 KB
/
banner.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
const slider = () => {
const seccionBanner = document.querySelector("[data-banner]");
const banners = [
{
id:1,
img: "./imagenes/banner/banner1.webp",
tituloBanner: "Febrero Promocional",
descripcion: "Productos seleccionados con 33% de descuento",
},
{
id:2,
img: "./imagenes/banner/banner4.jpg",
tituloBanner: "Diciembre Promocional",
descripcion: "Productos seleccionados con 33% de descuento",
},
{
id:3,
img: "./imagenes/banner/banner3.webp",
tituloBanner: "Enero Promocional",
descripcion: "Productos seleccionados con 33% de descuento",
}
]
let currentBannerIndex = 0;
const showBanner = () => {
const banner = banners[currentBannerIndex];
seccionBanner.innerHTML =`
<section class="banner" style="background-image: url(${banner.img});" id=${banner.id}>
<div class="banner2">
<h1 class="tituloBanner">${banner.tituloBanner}</h1>
<h3 class="descripcion">${banner.descripcion}</h3>
<button class="botonBanner">Ver Consolas</button>
</div>
</section>
`;
currentBannerIndex = (currentBannerIndex + 1) % banners.length;
};
showBanner();
setInterval(showBanner, 3000);
};
slider();