dragscroll();
window.jQuery("div").hover(function (){
//stop dragscroll();
});
window.jQuery("div").mouseleave(function (){
dragscroll();
});
答案 0 :(得分:1)
您可以使用dragscroll.reset()
:
dragscroll();
jQuery("div").mouseover(function (){
//stop dragscroll();
dragscroll.reset();
});
jQuery("div").mouseleave(function (){
dragscroll();
});