如何使内容无法通过鼠标滚轮滚动,而只能使用滚动条向下滚动。
非常感谢。
你可以使用 jQuery。像这样的东西
$("body").bind("mousewheel", function() {
return false;
});
你可以绑定touchstart
事件,但是手机上没有滚动条,那么用户如何滚动呢?
$("body").bind("mousewheel, touchstart", function() {
return false;
});
好吧,我找到了这个解决方案
触摸动作:pan-x;
它将允许您单击内容但无法向下滚动