當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery fadeOut()用法及代碼示例


jQuery fadeOut() 方法用於淡出元素。

用法

$(selector).fadeOut();
$(selector).fadeOut(speed,callback); 
$(selector).fadeOut(speed, easing, callback);

speed: 它是一個可選參數。它指定延遲的速度。它的可能值是慢、快和毫秒。

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>

輸出:

請參閱具有不同參數的 fadeOut() 方法示例。













相關用法


注:本文由純淨天空篩選整理自 jQuery fadeOut()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。