本文介绍了禁用“物化轮播”上的“触摸”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
看起来之前没有人问这个问题,因为我几乎在互联网上寻找一个非常简单的答案。
It looks like no one has asked this question before since I've pretty much scoured the internet looking for a very simple answer.
如何去禁用能够在物化大转盘上向左/向右滑动吗?
How would one go about disabling the ability to swipe left/right on the materialize carousel?
推荐答案
在Materialise.js中添加/编辑:
in Materialize.js add/edit:
var allowCarouselDrag = true;
value: function _handleCarouselDrag(e) {
if(allowCarouselDrag){
....
}
}
您可以为每个应用程序设置allowCarouselDrag变量。
You can set the allowCarouselDrag variable per application.
这篇关于禁用“物化轮播”上的“触摸”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!