.slideUp()
.slideUp( [ duration ], [ callback ] ) 返回: jQuery
描述: 用滑动动画隐藏一个匹配元素。
-
version added: 1.0.slideUp( [ duration ], [ callback ] )
duration一个字符串或者数字决定动画将运行多久。
callback在动画完成时执行的函数。
-
version added: 1.4.3.slideUp( [ duration ], [ easing ], [ callback ] )
duration一个字符串或者数字决定动画将运行多久。
easing一个用来表示使用哪个缓冲函数来过渡的字符串。
callback在动画完成时执行的函数。
.slideUp()
方法将给匹配元素的高度的动画,这会导致页面的下面部分滑上去,弥补了显示物品的方式。一旦高度达到0,display
样式属性将被设置为none
,以确保该元素不再影响页面布局。
持续时间是以毫秒为单位的,数值越大,动画越慢,不是越快。字符串 'fast'
和 'slow'
分别代表200和600毫秒的延时。如果提供任何其他字符串,或者这个duration参数被省略,那么默认使用400
毫秒的延时。
如果提供回调函数参数,回调函数会在动画完成的时候调用。这个对于将不同的动画串联在一起按顺序排列是非常有用的。这个回调函数不设置任何参数,但是this
是存在动画的DOM元素,如果多个元素一起做动画效果,值得注意的是每执行一次回调匹配的元素,而不是作为一个整体的动画一次。
我们可以给任何元素做动画,比如一个简单的图片:
<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').slideUp('slow', function() { // Animation complete. }); });
注意:
- 所有的jQuery效果,包括
.slideDown()
,能使用jQuery.fx.off = true
关闭全局性。更多信息请查看jQuery.fx.off。
例子:
Example: 激发所有的div中滑动,400毫秒内完成的动画。
<!DOCTYPE html>
<html>
<head>
<style>
div { background:#3d9a44; margin:3px; width:80px;
height:40px; float:left; }
</style>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
Click me!
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<script>
$(document.body).click(function () {
if ($("div:first").is(":hidden")) {
$("div").show("slow");
} else {
$("div").slideUp();
}
});
</script>
</body>
</html>
Demo:
Example: Animates the parent paragraph to slide up, completing the animation within 200 milliseconds. Once the animation is done, it displays an alert.
<!DOCTYPE html>
<html>
<head>
<style>
div { margin:2px; }
</style>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<div>
<button>Hide One</button>
<input type="text" value="One" />
</div>
<div>
<button>Hide Two</button>
<input type="text" value="Two" />
</div>
<div>
<button>Hide Three</button>
<input type="text" value="Three" />
</div>
<div id="msg"></div>
<script>
$("button").click(function () {
$(this).parent().slideUp("slow", function () {
$("#msg").text($("button", this).text() + " has completed.");
});
});
</script>
</body>
</html>