swiper轮播控件配置项
var mySwiper = new Swiper ('.swiper-container', {
direction: 'horizontal',
loop: true,
autoplay: 5000,
autoplayDisableOnInteraction : false, //控制使用分页器后,还可以自动轮播
// 如果需要分页器
pagination: '.swiper-pagination',
paginationClickable :true, //分页器可以点击切换使用
// 如果需要前进后退按钮
nextButton: '.swiper-button-next',
prevButton: '.swiper-button-prev',
})