0
我爲我的問題創建了一個簡化小提琴。當您拖動該項目時,它將恢復到由邊距引起的錯誤位置。我該如何解決這個問題? http://jsfiddle.net/pZF27/1/使用餘量還原可拖動項目的位置
HTML:
<img id="image" alt="Image" />
CSS:
#image{
cursor: move;
margin-top: 50px;
}
JS:
$('#image').draggable({
revert: true,
helper:'clone',
cursorAt: {
top: -40
},
});
PS:我不知道如何風格的代碼,對不起。