如题
html
js
//轮播图轮播部分
var mySwiper = new Swiper(".swiper-container", {
observer: true, //解决数据传入后轮播问题
observerParents: true,
autoResize: true, //尺寸自适应
initialSlide: 0,
direction: "horizontal",
/*横向滑动*/
loop: true,
/*形成环路(即:可以从最后一张图跳转到第一张图*/
slidesPerView: 'auto',
loopedSlides: 0,
pagination: ".swiper-pagination",
/*分页器*/
paginationClickable: true,
autoplay: 3000,
/*每隔3秒自动播放*/
autoplayDisableOnInteraction: false /*点击之后是否停止自动轮播*/
})
不知道是哪里出了问题,是插件的bug吗?麻烦大家解答一下,谢谢!