如何在 jQuery 中结合缩放和淡入淡出等效果?

发布于 2024-12-08 22:56:29 字数 243 浏览 0 评论 0原文

我希望使一个对象淡出并同时缩小 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沒落の蓅哖 2024-12-15 22:56:29

尝试使用 .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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文