如何使用 JQuery 将按钮移到左侧?

发布于 2024-12-09 00:33:13 字数 103 浏览 0 评论 0原文

我在宽度为 300px 的 div 内有一个按钮。单击按钮时,我希望按钮移动到 div 的左侧并在 1 秒内消失。

这怎么可能用 JQUery 实现呢?

谢谢,

I have a button inside a div whose width is 300px. When the button is clicked, I'd like the button move to the left side of the div and get disappeared in 1 second.

How would that be possible with JQUery?

Thanks,

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

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

发布评论

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

评论(2

一身软味 2024-12-16 00:33:13

这可能取决于原始位置的分配方式,但我认为以下应该有效:

$('button').click(
    function(){
        $(this).animate(
            {
                'margin-left' : '-=200px'
            },1000);
        });

JS Fiddle

要淡出并删除按钮:

$('button').click(
    function(){
        $(this).animate(
            {
                'margin-left' : '-=200px',
                'opacity' : 0
            },1000,
            function(){
                $(this).remove();
            });
        });

JS Fiddle

It probably depends on how the original position is assigned, but I think the following should work:

$('button').click(
    function(){
        $(this).animate(
            {
                'margin-left' : '-=200px'
            },1000);
        });

JS Fiddle.

To fade out, and remove, the button:

$('button').click(
    function(){
        $(this).animate(
            {
                'margin-left' : '-=200px',
                'opacity' : 0
            },1000,
            function(){
                $(this).remove();
            });
        });

JS Fiddle.

倾城月光淡如水﹏ 2024-12-16 00:33:13

尝试将 fadeOut() 与 animate() 结合使用

$("#element").animate({
   left: 0
}, 1000, function(){
    $("#element").fadeOut();
});

try fadeOut() with combination of animate()

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