Swiper 播放一会后,会自动停止
默认设置:
var flinkSwiper = new Swiper("#index-flink", { autoplay: 3000, // 每隔 3000 毫秒(3 秒)切换一次 autoplayDisableOnInteraction: false, // 用户操作后不停止自动播放 loop: true, slidesPerView: "auto", spaceBetween: 11, });
修改配置:
slidesPerView: 4 //改为固定数量
原因:设置成auto识别图片数量会存在问题