如何切换鼠标的垂直和水平滚动?

发布于 2024-09-06 02:54:04 字数 393 浏览 7 评论 0原文

我有一个水平布局的网站,我如何让鼠标滚轮相对于 x 轴(而不是像往常一样的 y 轴)滚动。 我使用 jQuery 插件 mousewheelscrollTo,但我无法实现 柔和、自然的滚动。 您可以查看我的测试网站上的示例

I have website with horizontal layout and i what to make mouse wheel scroll it relative to axis x (not y, like usual).
I use jQuery plugins mousewheel and scrollTo, but I can't achieve
soft, natural scroll.
You can look at the example on my test site

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

怎会甘心 2024-09-13 02:54:05

回答了一个与此类似的问题...我们结束了不使用 jQuery 动画,因为它不稳定。这是演示

尝试更改增量乘数来更改鼠标滚轮滚动的量:

this.scrollLeft -= (delta * 30);

I answered a question similar to this... we ended up not using jQuery animation because it was choppy. Here is the demo.

Try changing the delta multiplier to change the amount the mousewheel scrolls:

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