0

如何使内容无法通过鼠标滚轮滚动,而只能使用滚动条向下滚动。

非常感谢。

4

3 回答 3

0

你可以使用 jQuery。像这样的东西

$("body").bind("mousewheel", function() {
     return false;
});
于 2015-06-17T04:08:07.627 回答
0

你可以绑定touchstart事件,但是手机上没有滚动条,那么用户如何滚动呢?

$("body").bind("mousewheel, touchstart", function() {
     return false;
});

演示小提琴

于 2015-06-17T05:24:30.910 回答
0

好吧,我找到了这个解决方案

触摸动作:pan-x;

它将允许您单击内容但无法向下滚动

于 2015-06-18T03:22:36.837 回答