16 lines
344 B
JavaScript
16 lines
344 B
JavaScript
|
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);
|
||
|
});
|