jQuery 的 hide 和 SlideUp 方法等效吗?

发布于 2024-10-21 09:36:25 字数 436 浏览 1 评论 0原文

slideUp('slow')hide('slow') 会产生相同的动画效果吗?

示例代码:

$(document).ready(function(){
  $("#hide").click(function(){
    $("p").hide('slow');
  });
  $("#show").click(function(){
    $("p").show('slow');
  });
});


<p>If you click on the "Hide" button, I will disappear.</p>
<button id="hide">Hide</button>
<button id="show">Show</button>

Do slideUp('slow') and hide('slow') result in the same animation effects?

Example Code:

$(document).ready(function(){
  $("#hide").click(function(){
    $("p").hide('slow');
  });
  $("#show").click(function(){
    $("p").show('slow');
  });
});


<p>If you click on the "Hide" button, I will disappear.</p>
<button id="hide">Hide</button>
<button id="show">Show</button>

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

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

发布评论

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

评论(3

复古式 2024-10-28 09:36:25

不会。

.slideUp('slow') 将高度和垂直内边距设置为零。
.hide('slow') 还将宽度、水平填充和不透明度设置为零。

要查看差异,请将 javascript:void($('pre').hide(4000)) 粘贴到本页的地址栏中。

No.

.slideUp('slow') animates the height and vertical padding to zero.
.hide('slow') also animates the width, horizontal padding, and opacity to zero.

To see the difference, paste javascript:void($('pre').hide(4000)) in the address bar in this page.

许你一世情深 2024-10-28 09:36:25

动画有点不一样
- SlideUp('slow') 基本上是向上滑动,没有别的:)
- hide('slow') 同时向上和向左滑动。

在 jquery API 文档中,您有很好的文档:

The animation is a little different,
- slideUp('slow') basically slides up, nothing else :)
- hide('slow') slides up and left at the same time.

In jquery API doc you have good documentation:

貪欢 2024-10-28 09:36:25
$(function(){
        $(".job-bottom").hide();
        $(".job-top").click(function(){
            $(".job-bottom").slideUp('slow')
            $(this).next(".job-bottom").slideToggle( "slow" );
        });
    });
$(function(){
        $(".job-bottom").hide();
        $(".job-top").click(function(){
            $(".job-bottom").slideUp('slow')
            $(this).next(".job-bottom").slideToggle( "slow" );
        });
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文