Grab a copy of our FREE RECIPE EBOOK!
let currentIndex = 0; const items = document.querySelectorAll('.carousel-item'); const totalItems = items.length; function showSlide(index) { const carousel = document.querySelector('.carousel'); carousel.style.transform = `translateX(-${index * 100}%)`; } function nextSlide() { if (currentIndex < totalItems - 1) { currentIndex++; } else { currentIndex = 0; } showSlide(currentIndex); } function prevSlide() { if (currentIndex > 0) { currentIndex--; } else { currentIndex = totalItems - 1; } showSlide(currentIndex); } setInterval(nextSlide, 3000); // Autoplay every 3 seconds