我對一些類型的遊戲,我可以拖動的元素工作的工作和拖動它們取決於拖動方向移動jQuery的動畫移動元素留下一點都
左(正或負)。 我已經嘗試過這樣做的萬種方法。 正常的「回覆:真」與水平元素無法正常工作,因爲元素
被還原的位置錯誤。 最後,我用jQuery中的動畫()函數的工作了局面,它確實有效
不錯,但它只是拖動的元素上下,但左,右方向不
工作。 這是我做的是js腳本:
function setAllMatchesDraggable(){
$('.matches').not('.answer').draggable({
// Can't use revert, as we animate the original object
//revert: true,
helper: function(){
// Create an invisible div as the helper. It will move and
// follow the cursor as usual.
return $('<div></div>').css('opacity',0);
},
create: function(){
// When the draggable is created, save its starting
// position into a data attribute, so we know where we
// need to revert to.
var $this = $(this);
if(($this).hasClass("flip_left") || ($this).hasClass("flip_right"))
{
$this.data('top',$this.position().top - 29);
$this.data('left',$this.position().left);
}else{
$this.data('top',$this.position().top);
$this.data('left',$this.position().left);
}
},
stop: function(){
// When dragging stops, revert the draggable to its
// original starting position.
var $this = $(this);
$this.stop().animate({
"top": $this.data('top')
},200,'easeOutElastic',function(){
$(this).stop().animate({"left":$this.data('left')},200,'easeOutElastic');
});
},
drag: function(event, ui){
// During dragging, animate the original object to
// follow the invisible helper with custom easing.
$(this).stop().animate({
"top": ui.helper.position().top
},200,'easeOutElastic',function(){
$(this).stop().animate({"left":ui.helper.position().left},200,'easeOutElastic',function(){
console.log(ui.helper.position().left);
});
});
}
});
}
我希望你能幫忙。感謝提前:)
我沒有和仍然沒有工作:( –
那麼接下來的數據左邊是空的或錯誤的值檢查它並告訴我們結果 –
我檢測到它每次它給我一個「左」的不同值 –