2013-03-04 3 views

답변

0

나도 크롬과 같은 문제가 발생했다, 내가 알아 낸 유일한 것은 크롬 autoScrollingStep = 1의 옵션을 한 번에 1 개 픽셀의 스크롤에 대한 흥분하지입니다.

그래서 픽셀 단계를 늘리고 간격을 느리게했습니다. 문제는 크롬에서 정확히 "부드럽게"되지 않는다는 것입니다.

 $(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이 더 좋은 정보를 제공 할 것입니다.

관련 문제