swiper轮播图自动轮播失效问题

swiper轮播图设置自动轮播之后如果手动滑动之后,就不会再自动轮播了

解决方法:

var swiper = new Swiper(' .swiper-container', {
        pagination: {
    el: '.swiper-pagination',
  },
        loop: true,
        autoplay:true,
      autoplay: {
          disableOnInteraction: false
      }
    });

设置autoplay:true之后,再设置

autoplay:{
     disableOnInteraction: false
}

你可能感兴趣的:(swiper)