如何停止可拖动的 JcanvaScript 库?
例如一张图片,在拖放超出画布元素的情况下,我不想让图片超出它。
jc('#img1').draggable({
drag: function(){
point=jc('#img1').position();
if(point.x<0){
//here stop draggable image
//these options don't work
//this.draggable('pause');
//return;
//jc.pause();
}
}
});