2

これはできますか?基本的に、right:xxxPXを使用して絶対位置の画像をアニメーション化したいとしましょう。さて、アニメーションの進行中に、「トレイル」効果を追加できますか?

ありがとう、エイドリアン

4

1 に答える 1

5

これは機能するはずです:

var box = $('#box'),
    // Create some clones (these make up the trail)
    clones = $.map(Array(10), function(item, i){
        return box.clone().css('opacity', 1 / (i + 1)).hide().insertAfter(box);
    });

box.animate({
    top: 100,
    left: 200
}, {
    duration: 1000,
    step: function(now, fx) {

        // On each step, set a timeout for each clone,
        // making it move to the required position.

        var prop = fx.prop;

        $.each(clones, function(i, clone){
            clone = $(clone).show();
            setTimeout(function(){
                clone.css(prop, now);
            }, 50 * i);
        });

    }
});

デモ: http: //jsbin.com/ifobe3

于 2010-01-08T14:07:05.123 に答える