停止连续滚动smoothdivScroll

时间:2012-08-09 00:31:01

标签: jquery smooth-scrolling

我正在使用Thomas Kahn的smoothdivscroll并想知道如何停止连续滚动?

2 个答案:

答案 0 :(得分:1)

$( "#makeMeScrollable" ).bind( "mouseover", function () { 
$( this ).smoothDivScroll( "stopAutoScrolling" );
} ).bind( "mouseout", function () {  
$( this ).smoothDivScroll( "startAutoScrolling" );
} );

答案 1 :(得分:0)

检查他的文档here

搜索stopAutoScrollingdisable
我尝试使用chrome控制台禁用here并且它可以正常工作

$("#makeMeScrollable").smoothDivScroll("disable");