使用 Firefox 防止 MacBook 上水平触摸板滚动?
有人知道如何阻止触控板水平滚动吗?
我的网站故意溢出,您可以使用一些 javascript 滚动条进行导航。
但是,如果使用 Firefox 在 Mac 上查看,双指触摸板滚动可让您即使 x 溢出被隐藏,也可以水平移动。
有什么想法吗?
谢谢。
does anybody know how to stop track pads from scrolling horizontally?
My website has a deliberate overflow which you navigate using some javascript scrollbars.
However, if viewed on a mac using firefox the twofinger touch pad scroll allows you to move horizontally even though the x-overflow is hidden.
Any ideas?
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我自己在正在进行的一个项目中遇到了这个问题。当涉及到某些类型的滚动时,Firefox 会发生一些非常奇怪的事件。稍微挖掘一下就发现了 MozMousePixelScroll 事件。这是我用来抑制水平两指滚动的代码:
I ran into this issue myself with a project I'm working on. Firefox has some pretty strange events when it comes to certain kinds of scrolling. A little digging turned up the MozMousePixelScroll event. Here's the code I used to squelch the horizontal two-finger scrolling:
相反,您可以通过相对定位并更改左侧值或使用 CSS 转换(不需要重新绘制,因此速度更快)来移动内部内容。
这可能需要也可能不需要大量重写,但它会起作用。
Instead, you could move the inside content by either positioning relatively, and changing the left value, or using CSS transforms (which don't require a repaint, and are hence quicker).
This may or may not require lots of rewriting, but it will work.