我正在使用本教程(鼠标滚轮插件和脚本)做一个水平滚动页面:
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();
});
});