Spaces:
Running
Running
var swiper = new Swiper('.swiper-container', { | |
slidesPerView: 3, | |
spaceBetween: 30, | |
pagination: { | |
el: '.swiper-pagination', | |
clickable: true, | |
}, | |
navigation: { | |
nextEl: '.swiper-button-next', | |
prevEl: '.swiper-button-prev', | |
}, | |
}); | |
function createMovieCard(imageUrl, altText) { | |
return ` | |
<div class="swiper-slide hover:shadow-lg transition-shadow duration-300 animate__animated animate__fadeInUp"> | |
<img src="${imageUrl}" alt="${altText}" class="w-full h-auto hover:scale-105 transition-transform duration-200"> | |
</div> | |
`; | |
} | |