jQuery fadeOut()方法用于淡出元素。
句法:
$(selector).fadeOut();
$(selector).fadeOut(speed, callback);
$(selector).fadeOut(speed, easing, callback);
速度:这是一个可选参数。它指定延迟的速度。其可能的值是慢, 快和毫秒。
缓动:指定用于过渡的缓动功能。
callback:这也是一个可选参数。它指定在fadeOut()效果完成后要调用的函数。
让我们以一个示例来演示jQuery fadeOut()的效果。
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("#div1").fadeOut();
$("#div2").fadeOut("slow");
$("#div3").fadeOut(3000);
});
});
</script>
</head>
<body>
<p>See the fadeOut() method example with different parameters.</p>
<button>Click to fade out boxes</button><br><br>
<div id="div1" style="width:80px;height:80px;background-color:red;"></div><br>
<div id="div2" style="width:80px;height:80px;background-color:green;"></div><br>
<div id="div3" style="width:80px;height:80px;background-color:blue;"></div>
</body>
</html>
立即测试
输出:
请参见带有不同参数的fadeOut()方法示例。
单击淡出框
评论前必须登录!
注册