const carousel = document.querySelector('.carousel'); const prevButton = document.querySelector('.carousel-btn-prev'); const nextButton = document.querySelector('.carousel-btn-next'); const totalItems = document.querySelectorAll('.carousel-item').length; let currentIndex = 0; function updateCarousel() { const offset = -currentIndex * 100; carousel.style.transform = `translateX(${offset}%)`; } prevButton.addEventListener('click', () => { currentIndex = (currentIndex > 0) ? currentIndex - 1 : totalItems - 1; updateCarousel(); }); nextButton.addEventListener('click', () => { currentIndex = (currentIndex { nextButton.click(); }, 5000);

Página no encontrada.

La página que buscas no está disponible.

whatsapp-logo