概述 .hide()
返回值:jQuery
描述: 隐藏匹配的元素。
400
)
400
)
swing
)
true
)
.dequeue("queuename")
来启动它。
400
)
swing
)
如果没有参数,.hide()
方法是最简单的方法来隐藏一个元素:
$('.target').hide();
匹配的元素将被立即隐藏,没有动画。这大致相当于调用.css('display', 'none')
,但display
属性值保存在jQuery的数据缓存中,所以display
可以方便以后可以恢复到其初始值。如果一个元素的display
属性值为inline
,那么隐藏再显示时,这个元素将再次显示inline
。
当提供一个持续时间参数,.hide()
就变成了一个动画方法。.hide()
方法将为匹配元素的宽度,高度,以及不透明度,同时执行动画。一旦透明度达到0,display
样式属性将被设置为none
,这个元素将不再在页面中影响布局。
持续时间是以毫秒为单位的,数值越大,动画越慢,不是越快。字符串 'fast'
和 'slow'
分别代表200和600毫秒的延时。
请注意,.hide()
立即触发,并且如果没有duration(持续时间)或 指定的duration(持续时间)为0,将覆盖动画队列。
从jQuery 1.4.3开始,增加了一个字符串命名的可选的参数,用于确定使用的缓动函数。一个缓动函数指定用于动画进行中在不同点位的速度。 在jQuery库中easing默认的是调用 swing
, 如果想要在一个恒定的速度进行动画,那么调用 linear
. 更多的缓动函数要使用的插件,最显着的是jQuery UI suite。
如果提供回调函数,这个 callback
函数将在动画完成后被执行一次。这个能用来将不同的动画串联起来组成一个事件序列。这个回调函数不设置任何参数,但是this
指向执行动画的DOM元素。如果多个元素一起做动画效果,值得注意的是这个回调函数在每个匹配元素上执行一次。这个动画不是作为一个整体。
注意:这个方法可能会导致性能问题,特别是在许多元素上使用的时候。如果你遇到这样的问题,请使用性能测试工具,以确定是否是这个方法导致的。此外,在响应式布局中,如果在不同大小的视口中,元素的display
值不同时候,这个方法可能会导致显示混乱的问题。(手册网注:在响应式布局中,元素可能根据viewport(视口)大小来决定该元素显示还是隐藏,所以不同的viewport(视口)大小,元素的display
值可能不同,使用这个方法可能会导致元素显示混乱的布局问题)。
我们可以给任何元素做动画,比如一个简单的图片:
<div id="clickme">
Click here
</div>
<img id="book" src="book.png" alt="" width="100" height="123" />
With the element initially shown, we can hide it slowly:
$('#clickme').click(function() {
$('#book').hide('slow', function() {
alert('Animation complete.');
});
});
.hide()
,都能通过设置jQuery.fx.off = true
全局的关闭,效果等同于持续时间设置为0。更多信息查看 jQuery.fx.off
示例
点击链接隐藏所有段落。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>hide demo</title>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<p>Hello</p>
<a href="#">Click to hide me too</a>
<p>Here is another paragraph</p>
<script>
$("p").hide();
$("a").click(function ( event ) {
event.preventDefault();
$(this).hide();
});
</script>
</body>
</html>
缓慢的隐藏所有显示的段落,600毫秒内完成的动画。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>hide demo</title>
<style>
p { background:#dad; font-weight:bold; }
</style>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<button>Hide 'em</button>
<p>Hiya</p>
<p>Such interesting text, eh?</p>
<script>
$("button").click(function () {
$("p").hide("slow");
});
</script>
</body>
</html>
快速隐藏所有的 span 元素,用时 200 毫秒。一个结束后立即开始下一个。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>hide demo</title>
<style>
span { background:#def3ca; padding:3px; float:left; }
</style>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<button id="hidr">Hide</button>
<button id="showr">Show</button>
<div>
<span>Once</span> <span>upon</span> <span>a</span>
<span>time</span> <span>there</span> <span>were</span>
<span>three</span> <span>programmers...</span>
</div>
<script>
$("#hidr").click(function () {
$("span:last-child").hide("fast", function () {
// use callee so don't have to name the function
$(this).prev().hide("fast", arguments.callee);
});
});
$("#showr").click(function () {
$("span").show(2000);
});
</script>
</body>
</html>
当点击 div 之后用 2 秒时间隐藏这个 div。当它完全隐藏后将其移除。试试一次多点几个 div 看看。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>hide demo</title>
<style>
div { background:#ece023; width:30px;
height:40px; margin:2px; float:left; }
</style>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<div></div>
<script>
for (var i = 0; i < 5; i++) {
$("<div>").appendTo(document.body);
}
$("div").click(function () {
$(this).hide(2000, function () {
$(this).remove();
});
});
</script>
</body>
</html>