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


JQuery .fadeOut()用法及代碼示例


用法
.fadeOut(  [duration ] [, complete ] ) => jQuery

說明:通過將匹配的元素淡化為透明來隱藏它們。

  • 添加的版本:1.0.fadeOut( [duration ] [, complete ] )

    • duration(默認:400)
      類型:NumberString
      確定動畫將運行多長時間的字符串或數字。
    • complete
      類型:Function ()
      動畫完成後調用的函數,每個匹配元素調用一次。
  • 添加的版本:1.0.fadeOut( options )

    • options
      類型:PlainObject
      要傳遞給方法的附加選項的映射。
      • duration(默認:400)
        類型:NumberString
        確定動畫將運行多長時間的字符串或數字。
      • easing(默認:swing)
        類型:String
        一個字符串,指示用於轉換的緩動函數。
      • queue(默認:true)
        類型:BooleanString
        一個布爾值,指示是否將動畫放置在效果隊列中。如果為 false,動畫將立即開始。As of jQuery 1.7, queue 選項也可以接受一個字符串,在這種情況下,動畫被添加到該字符串表示的隊列中。當使用自定義隊列名稱時,動畫不會自動啟動;你必須調用.dequeue("queuename")開始它。
      • specialEasing
        類型:PlainObject
        一個對象,包含一個或多個由 properties 參數定義的 CSS 屬性及其相應的緩動函數。(添加的版本:1.4)
      • step
        類型:Function(現在是NumberTween補間)
        為每個動畫元素的每個動畫屬性調用的函數。此函數提供了修改 Tween 對象以在設置之前更改屬性值的機會。
      • progress
        類型:Function(Promise動畫,Number進度,NumberremainingMs)
        在動畫的每個步驟之後要調用的函數,每個動畫元素僅調用一次,而與動畫屬性的數量無關。(添加的版本:1.8)
      • complete
        類型:Function ()
        元素上的動畫完成後調用的函數。
      • start
        類型:Function(Promise動畫)
        當元素上的動畫開始時調用的函數。(添加的版本:1.8)
      • done
        類型:Function(Promise 動畫,Boolean jumpedToEnd)
        當元素上的動畫完成(其 Promise 對象已解析)時要調用的函數。(添加的版本:1.8)
      • fail
        類型:Function(Promise 動畫,Boolean jumpedToEnd)
        當元素上的動畫未能完成時調用的函數(其 Promise 對象被拒絕)。(添加的版本:1.8)
      • always
        類型:Function(Promise 動畫,Boolean jumpedToEnd)
        當元素上的動畫完成或停止但未完成時調用的函數(其 Promise 對象被解析或拒絕)。(添加的版本:1.8)
  • 添加的版本:1.4.3.fadeOut( [duration ] [, easing ] [, complete ] )

    • duration(默認:400)
      類型:NumberString
      確定動畫將運行多長時間的字符串或數字。
    • easing(默認:swing)
      類型:String
      一個字符串,指示用於轉換的緩動函數。
    • complete
      類型:Function ()
      動畫完成後調用的函數,每個匹配元素調用一次。

.fadeOut() 方法為匹配元素的不透明度設置動畫。一旦不透明度達到 0,display 樣式屬性設置為 none ,因此元素不再影響頁麵的布局。

持續時間以毫秒為單位;較高的值表示較慢的動畫,而不是較快的動畫。可以提供字符串'fast''slow' 來分別表示200600 毫秒的持續時間。如果提供任何其他字符串,或者如果省略 duration 參數,則使用默認持續時間 400 毫秒。

我們可以為任何元素設置動畫,例如簡單的圖像:

<div id="clickme">
  Click here
</div>
<img id="book" src="book.png" alt="" width="100" height="123">

有了最初顯示的元素,我們可以慢慢隱藏它:

$( "#clickme" ).click(function() {
  $( "#book" ).fadeOut( "slow", function() {
    // Animation complete.
  });
});
圖 1 - fadeOut() 效果圖示

注意:為了避免不必要的 DOM 操作,.fadeOut()不會隱藏已被視為隱藏的元素。有關 jQuery 認為隱藏的元素的信息,請參閱:hidden.

緩和

從 jQuery 1.4.3 開始,可以使用命名緩動函數的可選字符串。緩動函數指定動畫在動畫中不同點的進展速度。 jQuery 庫中唯一的緩動實現是默認的,稱為swing,並且以恒定的速度前進,稱為linear.使用plug-ins 可以使用更多的緩動函數,最值得注意的是jQuery UI 套件.

回調函數

如果提供,則在動畫完成後觸發回調。這對於將不同的動畫按順序串在一起很有用。回調未發送任何參數,但 this 設置為正在動畫的 DOM 元素。如果為多個元素設置了動畫,請務必注意,每個匹配的元素都會執行一次回調,而不是對整個動畫執行一次。

As of jQuery 1.6,當all匹配元素完成動畫時,.promise()方法可以與deferred.done()方法結合使用,以對整個動畫執行單個回調(參見example for .promise())。

其他注意事項:

  • 所有 jQuery 效果,包括 .fadeOut() ,都可以通過設置 jQuery.fx.off = true 來全局關閉,這有效地將持續時間設置為 0。有關更多信息,請參閱 jQuery.fx.off

例子:

動畫所有段落淡出,在 600 毫秒內完成動畫。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>fadeOut demo</title>
  <style>
  p {
    font-size: 150%;
    cursor: pointer;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<p>
  If you click on this paragraph
  you'll see it just fade away.
</p>
 
<script>
$( "p" ).click(function() {
  $( "p" ).fadeOut( "slow" );
});
</script>
 
</body>
</html>

演示:

在您單擊的一個部分中淡出跨度。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>fadeOut demo</title>
  <style>
  span {
    cursor: pointer;
  }
  span.hilite {
    background: yellow;
  }
  div {
    display: inline;
    color: red;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<h3>Find the modifiers - <div></div></h3>
<p>
  If you <span>really</span> want to go outside
  <span>in the cold</span> then make sure to wear
  your <span>warm</span> jacket given to you by
  your <span>favorite</span> teacher.
</p>
 
<script>
$( "span" ).click(function() {
  $( this ).fadeOut( 1000, function() {
    $( "div" ).text( "'" + $( this ).text() + "' has faded!" );
    $( this ).remove();
  });
});
$( "span" ).hover(function() {
  $( this ).addClass( "hilite" );
}, function() {
  $( this ).removeClass( "hilite" );
});
</script>
 
</body>
</html>

演示:

淡出兩個 div,一個使用 "linear" 緩動,一個使用默認設置 "swing," 緩動。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>fadeOut demo</title>
  <style>
  .box,
  button {
    float: left;
    margin: 5px 10px 5px 0;
  }
  .box {
    height: 80px;
    width: 80px;
    background: #090;
  }
  #log {
    clear: left;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<button id="btn1">fade out</button>
<button id="btn2">show</button>
 
<div id="log"></div>
 
<div id="box1" class="box">linear</div>
<div id="box2" class="box">swing</div>
 
<script>
$( "#btn1" ).click(function() {
  function complete() {
    $( "<div>" ).text( this.id ).appendTo( "#log" );
  }
  $( "#box1" ).fadeOut( 1600, "linear", complete );
  $( "#box2" ).fadeOut( 1600, complete );
});
 
$( "#btn2" ).click(function() {
  $( "div" ).show();
  $( "#log" ).empty();
});
</script>
 
</body>
</html>

演示:

相關用法


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