标签: jquery jquery-animate
我想让一个物体淡出并同时缩小80%。
这是我尝试的不正确的原因,因为动画是按顺序而不是同时发生的。
$div.effect("scale", {percent:80, origin:['middle','center']}, 3000); $div.fadeOut(3000, function() { //Animation done });
应该怎么做?
答案 0 :(得分:2)
尝试使用.animate()功能 这里有一些可以满足您需求的示例:http://api.jquery.com/animate/
.animate()