1

我正在使用 Jquery UI 的可拖动对象,并启用了还原功能。

默认情况下,div 以“摇摆”运动恢复,

我想知道如何使 div 以线性运动恢复。

4

1 回答 1

1

您不能在可拖动对象上使用常规 revert 方法来获得自定义返回缓动,因为它只支持更改持续时间。如果要使还原具有自定义效果,则需要如下一些自定义代码,并插入来自 JQueryUI 展示http://jqueryui.com/demos/effect/#easing的任何自定义缓动效果。

请注意,在 stop 方法中,我将缓动效果设为 easeInElastic 以突出差异,但您可以将其更改为您想要的任何内容(在您的情况下为线性)。

请注意,您需要包含 JQuery UI 才能获得这些效果。

http://jsfiddle.net/gregjuva/Hjf8p/

$(function() {
$("#draggable").draggable({
    // We Can't use revert, as we animate the original object so
    //revert: true,  <- don't use this

    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.

        // cache $this to keep from having to make 
        // lots of DOM calls w jquery
        var $this = $(this); 
        $this.data('starttop',$this.position().top)
             .data('startleft',$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('starttop'),
            left:$this.data('startleft')
        },1000,'easeInElastic'); 
        // replace with whatever jQueryUI easing you want
    },
    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,
            left: ui.helper.position().left
        },0,'linear');
    }
   });
 });​
于 2012-04-26T14:12:48.217 回答