mySwiper.stopAutoplay()
停止自动切换。一般用来制作“pause”按钮。
mySwiper.stopAutoplay()参数
- 启用版本:
- 3.0.0
使用方法示例
<script language="javascript">
var mySwiper = new Swiper('.swiper-container',{
autoplay : 1000,
})
$('#btn1').click(function(){
mySwiper.stopAutoplay();
})
$('#btn2').click(function(){
mySwiper.startAutoplay();
})
//鼠标覆盖停止自动切换
mySwiper.container[0].onmouseover=function(){
mySwiper.stopAutoplay();
}
//鼠标移出开始自动切换
mySwiper.container[0].onmouseout=function(){
mySwiper.startAutoplay();
}
</script>
转载原创文章请注明:文章转载自:Swiper中文网 [https://3.swiper.com.cn]
本文地址:https://3.swiper.com.cn/api/function/2014/1218/112.html