编程语言
首页 > 编程语言> > javascript – 鼠标滚轮水平滚动

javascript – 鼠标滚轮水平滚动

作者:互联网

参考以下示例:

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

它可以在Chrome下运行,但不适用于Firefox.

在Firefox中,您只能使用箭头键而不是鼠标滚轮滚动.

有人知道为什么会这样吗?

解决方法:

这是在您引用的网站的评论中作为解决方案发布的:

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

标签:mousewheel,javascript,scroll
来源: https://codeday.me/bug/20190825/1714165.html