我使用本教程(鼠标轮插件和脚本)在水平滚动页面中:
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();
});
});
最佳答案
http://cobbweb.me/blog/2012/03/30/jquery-mousewheel-plugin-version-2/
此插件可能会帮助您在firefox中使鼠标滚轮工作。