0

在 chrome 上,当页面方向为 'rtl' 时,当鼠标滚轮向前滚动时页面无法滚动,只有当鼠标滚轮向后滚动时页面才会滚动。您可能会在这里找到问题。

$(function () {
    $('header').niceScroll();
})
4

1 回答 1

2

尝试使用jQuery Mousewheel 插件。

$(function() {

   $("body").mousewheel(function(event, delta) {

      this.scrollLeft -= (delta * 30);

      event.preventDefault();

   });
于 2015-04-20T04:58:48.713 回答