使用jQuery跟踪效果?

时间:2010-01-08 13:17:35

标签: javascript jquery effect trail

可以这样做吗?基本上我想用右边的xxxPX为绝对定位的图像制作动画,比方说。那么,当动画正在进行时,我可以为它添加“跟踪”效果吗?

谢谢, 阿德里安

1 个答案:

答案 0 :(得分: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