2012-08-29 322 views
0

進出口使用本教程(鼠標滾輪插件和腳本)做一個水平滾動頁面:滾動頁面,平行鼠標滾輪

http://css-tricks.com/snippets/jquery/horz-scroll-with-mouse-wheel/

滾動適用於Chrome而不是Firefox的,它doesn't上工作在教程中的Firefox也,任何想法如何解決它?

$(function() { 
    $("body").mousewheel(function(event, delta) { 
    this.scrollLeft -= (delta * 30); 
    event.preventDefault(); 
    }); 
}); 
+0

你是什麼意思,它不工作? – Ibu

+0

看到這個:http://stackoverflow.com/questions/3928848/jquery-scrollleft-not-working 它看起來像你需要或許使用$(document).scrollLeft。 – jbehren

+0

由「它doesnt工作」我的意思是,它不工作在Firefox上....... – codek

回答