var mySwiper = new Swiper('.myswiper', {
autoplay: 3000,
simulateTouch: true,
loop: true,
preloadImages: true,
speed: 200,
pagination: '.swiper-pagination'
});
While this is my initial swiper, and when I drag it with mouse or touch it with finger and then slided it, my swiper stops auto playback, how to fix it?
It's now 'disableOnInteraction'
var mySwiper = new Swiper ('.swiper-container', {
direction: 'horizontal',
loop: true,
scrollbar: { el: '.swiper-scrollbar' },
autoplay: {
delay: 5000,
disableOnInteraction: false
}
});