You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
536 B
JavaScript

var swiper = new Swiper('.swiper-container', {
scrollbar: {
el: '.swiper-scrollbar',
hide: false,
draggable: true,
},
loop: false,
slidesPerView: 'auto',
initialSlide: 0
});
// FOR THE BUTTONS
var swiperRightButton = document.getElementById('sliderRight');
var swiperLeftButton = document.getElementById('sliderLeft');
swiperRightButton.addEventListener('click', function() {
swiper.slideNext();
});
swiperLeftButton.addEventListener('click', function() {
swiper.slidePrev();
});