codepens/product-showcase-ui/dist/script.js

16 lines
344 B
JavaScript
Raw Normal View History

2023-10-06 23:12:53 +02:00
var swiper = new Swiper(".mySwiper", {
navigation: {
nextEl: ".swiper-next-button",
prevEl: ".swiper-prev-button" },
effect: "fade",
loop: "infinite",
pagination: {
el: ".swiper-pagination",
type: "fraction" } });
swiper.on('slideChange', function (sld) {
document.body.setAttribute('data-sld', sld.realIndex);
});