design/public/assets/js/Simple-Slider.js

23 lines
628 B
JavaScript
Raw Normal View History

2024-11-19 15:01:33 +00:00
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,
});
});