文章列表
实现方式:
当拖动的时候判断是否拖出表格,如果拖出表格,就让滚动条自动滚动:
var intervalId;
....
if(currentPosition > bottomBorder){
intervalid = setInterval(autoscrollto(true),100);
}else if(currentPosition < topBorder){
intervalId = setInterval(autoscrollto(false),100);
}
//direction 值为true 表示向下滚动,false表示向上滚动
function au ...