mySwiper.mousewheel.disable()
禁止鼠标滑轮控制。
mySwiper.mousewheel.disable()信息
- 启用版本:
- 4.0.0
使用方法示例
从Swiper7开始,容器默认类名由'.swiper-container'变更为'.swiper'。
<script>
var mySwiper = new Swiper('.swiper',{
mousewheel: true,
})
$('#btn1').click(function(){
mySwiper.mousewheel.disable(); //禁止鼠标滑轮控制
})
$('#btn2').click(function(){
mySwiper.mousewheel.enable(); //开启鼠标滑轮控制
})
</script>
转载原创文章请注明:文章转载自:Swiper中文网 [https://www.swiper.com.cn]
本文地址:https://www.swiper.com.cn/api/mousewheel/103.html