在Chrome上,当页面方向为“rtl”时,当鼠标滚轮向前滚动时页面无法滚动,页面仅在鼠标滚轮向后滚动时滚动。您可能会发现问题here。
$(function () {
$('header').niceScroll();
})
答案 0 :(得分:2)
$(function() {
$("body").mousewheel(function(event, delta) {
this.scrollLeft -= (delta * 30);
event.preventDefault();
});