滑动的时候为什么会一下子跳过好几张图片?
$("#large-container").tap(function(){
$(this).hide();
}).swipeLeft(function(){ //向左滑动
cid++;
if(cid>total){
cid = total;
}else{
loadImg(cid);
}
}).swipeRight(function(){ //向右滑动
cid--;
if(cid<1){
cid = 1;
}else{
loadImg(cid);
}
});