使用 Firefox 防止 MacBook 上水平触摸板滚动?

发布于 2024-11-05 04:01:11 字数 251 浏览 0 评论 0原文

有人知道如何阻止触控板水平滚动吗?

我的网站故意溢出,您可以使用一些 javascript 滚动条进行导航。

http://www.mitchellop.com

但是,如果使用 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.

http://www.mitchellop.com

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

天煞孤星 2024-11-12 04:01:11

我自己在正在进行的一个项目中遇到了这个问题。当涉及到某些类型的滚动时,Firefox 会发生一些非常奇怪的事件。稍微挖掘一下就发现了 MozMousePixelScroll 事件。这是我用来抑制水平两指滚动的代码:

window.addEventListener('MozMousePixelScroll', function(evt){
    if(evt.axis === evt.HORIZONTAL_AXIS){
        evt.preventDefault();
    }
}, false);

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:

window.addEventListener('MozMousePixelScroll', function(evt){
    if(evt.axis === evt.HORIZONTAL_AXIS){
        evt.preventDefault();
    }
}, false);
如痴如狂 2024-11-12 04:01:11

相反,您可以通过相对定位并更改左侧值或使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文