JQuery 插件用于将一个 dom 元素移动到另一个 dom 元素中

发布于 2024-12-11 20:53:19 字数 302 浏览 3 评论 0原文

我想实现一个动画,其中一个 dom 元素移动到另一个 dom 元素中,缩小并最终消失。考虑当用户将商品添加到购物车时我想要向用户显示的动画。有没有一个插件可以实现这个或者一个简单的jquery脚本?

这就是我想要的东西。 - http://pastebin.me/638d1947c4d20da4eccd6542887caf27

这里元素被附加到另一个dom元素。我不想附加它,我想要的只是动画。

I want to implement an animation where one dom element is moved into another, scales down and finally disappears. Consider the animation I want to show to user when he adds an item to his shopping cart. Is there a plugin to implement this or a simple jquery script may be?

Here is something along the lines of what I want. - http://pastebin.me/638d1947c4d20da4eccd6542887caf27

Here the element is being append to another dom element. I don't want to append it, just animate is what I am looking for.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

冷默言语 2024-12-18 20:53:19

事实证明其实很简单。我实施了这样的事情......

$('#HideDiv').animate({
    opacity: 0,
    left: '+=50',
    width: 0
}, "slow", function() {
    $(this).hide();
});

It turned out to be quite simple actually. I implemented something like this...

$('#HideDiv').animate({
    opacity: 0,
    left: '+=50',
    width: 0
}, "slow", function() {
    $(this).hide();
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文