如何在jQuery中结合使用缩放w / fadeOut的效果?

时间:2011-10-10 14:38:45

标签: jquery jquery-animate

我想让一个物体淡出并同时缩小80%。

这是我尝试的不正确的原因,因为动画是按顺序而不是同时发生的。

$div.effect("scale", {percent:80, origin:['middle','center']}, 3000);
$div.fadeOut(3000, function()
{
   //Animation done
});

应该怎么做?

1 个答案:

答案 0 :(得分:2)

尝试使用.animate()功能 这里有一些可以满足您需求的示例:http://api.jquery.com/animate/