Swiper.js手动滑动之后,不再自动滑动问题

var swiper = new Swiper('.swiper-container', {
        pagination: '.swiper-pagination',
        autoplay: 2000,
        paginationClickable: true,
        loop: true,
       //添加这个属性,就可以了
        autoplayDisableOnInteraction : false
    });
原文地址:https://www.cnblogs.com/duanyue/p/7002866.html