在jQuery中为几个元素顺利链接动画

时间:2013-07-11 08:22:48

标签: javascript jquery css animation queue

我正在尝试通过使用jQuery按顺序动画几个堆叠的图像来重新创建地图的放大效果,以用于跨域目的。

到目前为止,我通过使用延迟和每个图像的两个单一动画(A& B日志)对动画进行排队来实现某些目的,以便通过缩放在图像之间生成平滑过渡,并在下一个图像上淡化它们。

$('img:not(:last-child)') /* All images but farest zoom */
.reverse() /* From last to first */
.each(function (index) {
    $(this).css( /* From half size… */ {
        'width': 584,
        'height': 336,
        'margin-left': -292,
        'margin-top': -168
    });
    $(this).delay(index * 300).animate( /* …to actual size */ {
        'width': 1168,
        'height': 673,
        'margin-left': -584,
        'margin-top': -336
    }, {
        duration: 300,
        easing: 'linear',
        done: function () {
            console.log('A:', index, new Date().getTime() - timestamp);
        }
    });
});
$('img:not(:first-child)') /* All images but closest zoom */
.reverse() /* From last to first */
.each(function (index) {
    $(this).animate( /* Animate to double size */ {
        'width': 2336,
        'height': 1346,
        'margin-left': -1168,
        'margin-top': -673,
        'opacity': 0
    }, {
        duration: 300,
        easing: 'linear',
        done: function () {
            console.log('B:', index, new Date().getTime() - timestamp);
            $(this).remove(); /* Remove the elment once completed */
        }
    });
});

众所周知,jQuery缺乏对单个队列中不同DOM元素的动画队列动画的支持,这导致了这种复杂的解决方案。

check this Fiddle

正如您将看到的,一旦图像完全加载并且您单击地图,动画队列就会启动。但它远非完美。 转换根本不是流畅的,导致动画之间稍微停顿,从而破坏了结果。我已经尝试了几个小时,玩了超时,重新思考算法,强制线性转换,但没有结果。

我的主要目标是实现流畅动画,然后为整个动画重新创建全局缓动效果,如'swing',逐渐加速为中间图像动画。

1 个答案:

答案 0 :(得分:2)

所以花了我的最后几个小时来弄清楚这里的黑客是什么,这里是你应该注入的代码

jQuery.easing = {
    zoom: function( p ) {
        return (3*p + Math.pow( p, 2 ))/4;
    }
};

之后,您可以在代码中使用easing: 'zoom'

相当荒谬btw在jQuery UI中有32种不同的缓动但没有什么可以缩放!!!