我有这个小提琴:http: //jsfiddle.net/u4CBW/
$("#ninjaimage1").draggable({
containment: "#cirlce1",
stop: function (event, ui) {
$("#cirlce1").animate({
top: $(this).offset().top - 60,
left: $(this).offset().left - 60
});
}
});
每当拖动图像时,我想在该图像的起始位置和结束位置之间画一条线,我该如何实现?