0

我正在使用本教程(鼠标滚轮插件和脚本)做一个水平滚动页面:

http://css-tricks.com/snippets/jquery/horz-scroll-with-mouse-wheel/

滚动适用于 chrome 但不适用于 firefox,在本教程中它也不适用于 firefox,有什么解决方法的想法吗?

$(function() {
    $("body").mousewheel(function(event, delta) {
    this.scrollLeft -= (delta * 30);
    event.preventDefault();
    });
});
4

2 回答 2

2

http://cobbweb.me/blog/2012/03/30/jquery-mousewheel-plugin-version-2/

这个插件可能会帮助你让鼠标滚轮在 Firefox 中工作。

于 2012-08-29T18:00:28.507 回答
0

有一些滚动插件可以帮助你。 https://github.com/lvming6816077/H5FullscreenPage

于 2015-03-10T11:45:13.987 回答