jQuery fadeOut()方法
jQuery的fadeOut()方法用于渐变隐藏元素。
语法 :
$(selector).fadeOut();
$(selector).fadeOut(speed,callback);
$(selector).fadeOut(speed, easing, callback);
speed :这是一个可选参数,指定延迟的速度。可能的取值有slow(慢速)、fast(快速)和毫秒数。
easing :它指定用于过渡的缓动函数。
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>
输出: