Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有水平布局的网站,我让鼠标滚轮相对于 x 轴(不是 y,像往常一样)滚动它。我使用 jQuery 插件mousewheel和scrollTo,但我无法实现柔和、自然的滚动。您可以查看我的测试站点上的示例
mousewheel
scrollTo
我回答了一个类似的问题......我们最终没有使用 jQuery 动画,因为它不稳定。这是演示。
尝试更改 delta 乘数以更改鼠标滚轮滚动的量:
this.scrollLeft -= (delta * 30);