美文网首页
swiper 3.4.0 一下 和3.4.2以上区别

swiper 3.4.0 一下 和3.4.2以上区别

作者: 星宇万物 | 来源:发表于2021-04-20 13:23 被阅读0次

3.4.2版本
var swiper = new Swiper('#swiper1', {
spaceBetween: 30,
loop: true,
pagination: {
el: '.swiper-pagination',
clickable: true,
},
autoplay: {
delay:3000,
disableOnInteraction: false,
},
});
swiper.el.onmouseover = function(){ //鼠标放上暂停轮播
swiper.autoplay.stop();
}
swiper.el.onmouseleave = function(){
swiper.autoplay.start();
}

3.4.0以下版本
var swiper = new Swiper('.swiper-container', {
paginationClickable: true,
loop: true,
autoplay: 5000,
pagination: '.swiper-pagination'
});
$('.swiper-container').hover(function() {
swiper.stopAutoplay();
}, function() {
swiper.startAutoplay();
});

相关文章

网友评论

      本文标题:swiper 3.4.0 一下 和3.4.2以上区别

      本文链接:https://www.haomeiwen.com/subject/acfnlltx.html