autoplayStop(swiper)
回调函数,自动切换结束时执行(由自动切换进入到不自动切换)。
autoplayStop(swiper)信息
- 类型:
- function
- 启用版本:
- 4.0.0
使用方法示例
从Swiper7开始,容器默认类名由'.swiper-container'变更为'.swiper'。
<script language="javascript">
var mySwiper = new Swiper('.swiper',{
autoplay: true,
on:{
autoplayStart:function(){
$("#showhtml").html('开启自动切换');
},
autoplayStop:function(){
$("#showhtml").html('关闭自动切换');
}
}
})
</script>
转载原创文章请注明:文章转载自:Swiper中文网 [https://www.swiper.com.cn]
本文地址:https://www.swiper.com.cn/api/autoplay/425.html
上一篇:autoplayStart(swiper)
下一篇:没有了