概述 .show()
返回值:jQuery
描述:显示隐藏的匹配元素。
400
)
400
)
swing
)
true
)
.dequeue("queuename")
来启动它。
400
)
swing
)
如果没有参数,.hide()
方法是最简单的方法来隐藏一个元素:
$('.target').show();
匹配的元素将被立即显示,没有动画。这大致相当于调用.css('display', 'block')
,但display
属性值保存在jQuery的数据缓存中,所以display
可以方便以后可以恢复到其初始值。如果一个元素的display
属性值为inline
,然后是隐藏和显示,这个元素将再次显示inline
。
注意: 如果使用!important在你的样式中,比如display: none !important
,如果你希望.show()
方法才能正常工作,必须使用.css('display', 'block !important')
重写样式。
当提供一个 duration(持续时间)参数,.show()
成为一个动画方法。.show()
方法将为匹配元素的宽度,高度,以及不透明度,同时进行动画操作。
持续时间是以毫秒为单位的,数值越大,动画越慢,不是越快。字符串 'fast'
和 'slow'
分别代表200和600毫秒的延时。
从jQuery 1.4.3开始,一个可选的字符串类型的easing参数,用于确定使用的缓冲函数。缓动函数指定用于动画进行中在不同点位的速度。jQuery默认只提供两个缓冲效果:调用 swing
, 在一个恒定的速度进行;调用 linear
. 更多的缓动函数要使用的插件,最显着的是jQuery UI suite。
如果提供回调函数参数,回调函数会在动画完成的时候调用。将不同的动画串联在一起按顺序排列执行是非常有用的。这个回调函数不设置任何参数,但是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 hidden, we can show it slowly:
$('#clickme').click(function() {
$('#book').show('slow', function() {
// Animation complete.
});
});
.show()
,都能通过设置jQuery.fx.off = true
全局的关闭,效果等同于将动画持续时间(duration )参数设置成 0。更多信息查看 jQuery.fx.off
.
示例
缓慢地显示所有隐藏的段落,600毫秒内完成的动画。
<!DOCTYPE html>
<html>
<head>
<style>
p { background:yellow; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<button>Show it</button>
<p style="display: none">Hello 2</p>
<script>
$("button").click(function () {
$("p").show("slow");
});
</script>
</body>
</html>
依次显示 div,每个用时 200 毫秒。一个动画完成后立即开始下一个。
<!DOCTYPE html>
<html>
<head>
<style>
div { background:#def3ca; margin:3px; width:80px;
display:none; float:left; text-align:center; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<button id="showr">Show</button>
<button id="hidr">Hide</button>
<div>Hello 3,</div>
<div>how</div>
<div>are</div>
<div>you?</div>
<script>
$("#showr").click(function () {
$("div").first().show("fast", function showNext() {
$(this).next("div").show("fast", showNext);
});
});
$("#hidr").click(function () {
$("div").hide(1000);
});
</script>
</body>
</html>
动画显示所有 span 和 input 元素。可以试着在下面的文本框中输入 yes 并按回车。
<!DOCTYPE html>
<html>
<head>
<style>
span { display:none; }
div { display:none; }
p { font-weight:bold; background-color:#fcd; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<button>Do it!</button>
<span>Are you sure? (type 'yes' if you are) </span>
<div>
<form>
<input type="text" value="as;ldkfjalsdf"/>
</form>
</div>
<p style="display:none;">I'm hidden...</p>
<script>
function doIt() {
$("span,div").show("slow");
}
/* can pass in function name */
$("button").click(doIt);
$("form").submit(function () {
if ($("input").val() == "yes") {
$("p").show(4000, function () {
$(this).text("Ok, DONE! (now showing)");
});
}
$("span,div").hide("fast");
/* to stop the submit */
return false;
});
</script>
</body>
</html>