如何在 jQuery 中结合缩放和淡入淡出等效果?
我希望使一个对象淡出并同时缩小 80%。
这是我尝试过的方法,但这是不正确的,因为动画是按顺序发生的,而不是同时发生的。
$div.effect("scale", {percent:80, origin:['middle','center']}, 3000);
$div.fadeOut(3000, function()
{
//Animation done
});
应该怎么做呢?
I wish to make an object fade out and scale down 80% at the same time.
This is what I tried which is not correct because the animations happen in sequence instead of at the same time.
$div.effect("scale", {percent:80, origin:['middle','center']}, 3000);
$div.fadeOut(3000, function()
{
//Animation done
});
How should it be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
.animate()
函数。这里有一些可以满足您的需求的示例: http://api.jquery.com/animate/
Try using
.animate()
function.Here there are some examples that can fit your needs: http://api.jquery.com/animate/