jquery nicescroll:鼠标滚轮问题

时间:2015-04-20 04:25:39

标签: javascript jquery nicescroll

在Chrome上,当页面方向为“rtl”时,当鼠标滚轮向前滚动时页面无法滚动,页面仅在鼠标滚轮向后滚动时滚动。您可能会发现问题here

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

1 个答案:

答案 0 :(得分:2)

尝试使用jQuery Mousewheel plugin.

$(function() {

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

      this.scrollLeft -= (delta * 30);

      event.preventDefault();

   });