-JS - 触摸-防止水平滚动
我需要防止我的网络应用程序中的水平滚动。我尝试在 touchmove 事件上使用 PreventDefault() ,但它也阻止垂直滚动。
有什么想法吗?^^
我的尝试:
$(document).bind("touchmove", function(event) {
event.preventDefault();
});
I need to prevent horizontal scroll in my web app. I tried with preventDefault() on touchmove event but it prevent vertical scroll too.
some idea?^^
my try:
$(document).bind("touchmove", function(event) {
event.preventDefault();
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我看到这样做的唯一方法是手动编码滚动功能,因此将从上面的代码开始以防止默认功能,然后检查事件属性以决定如何滚动页面设置 window.scrollTop 适当地垂直滚动页面。
The only way I can see doing this is to manually code the scrolling functionality, so will start off with the above code to prevent the default functionality and then inspect the event properties to decide how to scroll the page setting window.scrollTop appropriately to vertically scroll the page.