2013-03-04 112 views

回答

0

,我有太多的Chrome同樣的問題,我想通了,唯一的一點是Chrome是不是激動約1個像素在與autoScrollingStep = 1的選項時滾動。

所以,我增加了像素的步驟,並減緩了間隔。問題是現在Chrome並不完全「流暢」。

 $(document).ready(function() { 
     // Initialization 
     $("div#makeMeScrollable").smoothDivScroll({ 
      autoScrollingMode: "onStart", 
      autoScrollingDirection: "endlessLoopRight", 
      autoScrollingStep: 3, // anything less than 3 in Chrome doesn't work 
      autoScrollingInterval:20 // default is 10ms, increase so it looks like you want. 

     }); 
    }); 

也許tkhan會帶來更好的信息。