design/public/assets/js/Simple-Slider.js
free ko 3f7e5722d5
All checks were successful
publish / Build-and-publish (push) Successful in 17s
landing page edit
2024-11-19 17:01:33 +02:00

23 lines
628 B
JavaScript

document.addEventListener("DOMContentLoaded", function() {
// Initializing the swiper plugin for the slider.
// Read more here: http://idangero.us/swiper/api/
var mySwiper = new Swiper('.swiper-container', {
loop: true,
speed: 1200,
stopOnLastSlide: false,
autoplay: {delay: 8000,},
pagination: {
el: '.swiper-pagination' ,
clickable: true
},
paginationClickable: true,
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev'
},
spaceBetween: 10,
});
});