已经使用这个属性autoplayDisableOnInteraction:false, IE8下不兼容; 有没有人解决这个问题
官网的文档上有解决方法
在IE8以下此选项可能会失效,可以使用startAutoplay()来重新启动,如下
var mySwiper = new Swiper('.swiper-container', {
onAutoplayStop: function(swiper){
if(!swiper.support.transitions){ //IE7、IE8
swiper.startAutoplay()
}
}
}
判断ie8 下使用自写的幻灯片插件