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


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


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

說明:調整匹配元素的不透明度。

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

    • duration
      類型:StringNumber
      確定動畫將運行多長時間的字符串或數字。
    • opacity
      類型:Number
      一個介於 0 和 1 之間的數字,表示目標不透明度。
    • complete
      類型:Function ()
      動畫完成後調用的函數。
  • 添加的版本:1.4.3.fadeTo( duration, opacity [, easing ] [, complete ] )

    • duration
      類型:StringNumber
      確定動畫將運行多長時間的字符串或數字。
    • opacity
      類型:Number
      一個介於 0 和 1 之間的數字,表示目標不透明度。
    • easing
      類型:String
      一個字符串,指示用於轉換的緩動函數。
    • complete
      類型:Function ()
      動畫完成後調用的函數。

.fadeTo() 方法為匹配元素的不透明度設置動畫。它類似於 .fadeIn() 方法,但該方法取消隱藏元素並始終淡入 100% 不透明度。

持續時間以毫秒為單位;較高的值表示較慢的動畫,而不是較快的動畫。可以提供字符串'fast''slow' 來分別表示200600 毫秒的持續時間。如果提供任何其他字符串,則使用 400 毫秒的默認持續時間。與其他效果方法不同,.fadeTo() 要求明確指定duration

如果提供,則在動畫完成後觸發回調。這對於將不同的動畫按順序串在一起很有用。回調未發送任何參數,但 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 dim it slowly:
$( "#clickme" ).click(function() {
  $( "#book" ).fadeTo( "slow" , 0.5, function() {
    // Animation complete.
  });
});
圖 1 - fadeTo() 效果圖示

duration 設置為 0 時,此方法隻會更改 opacity CSS 屬性,因此 .fadeTo( 0, opacity ).css( "opacity", opacity ) 相同。

其他注意事項:

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

例子:

動畫第一段以淡化到 0.33 的不透明度(33%,大約三分之一可見),在 600 毫秒內完成動畫。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>fadeTo demo</title>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<p>
Click this paragraph to see it fade.
</p>
 
<p>
Compare to this one that won't fade.
</p>
 
<script>
$( "p" ).first().click(function() {
  $( this ).fadeTo( "slow", 0.33 );
});
</script>
 
</body>
</html>

演示:

每次單擊時將 div 淡化為隨機不透明度,在 200 毫秒內完成動畫。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>fadeTo demo</title>
  <style>
  p {
    width: 80px;
    margin: 0;
    padding: 5px;
  }
  div {
    width: 40px;
    height: 40px;
    position: absolute;
  }
  #one {
    top: 0;
    left: 0;
    background: #f00;
  }
  #two {
    top: 20px;
    left: 20px;
    background: #0f0;
  }
  #three {
    top: 40px;
    left:40px;
    background:#00f;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<p>And this is the library that John built...</p>
 
<div id="one"></div>
<div id="two"></div>
<div id="three"></div>
 
<script>
$( "div" ).click(function() {
  $( this ).fadeTo( "fast", Math.random() );
});
</script>
 
</body>
</html>

演示:

找到正確答案!淡入淡出將花費 250 毫秒,並在完成後更改各種樣式。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>fadeTo demo</title>
  <style>
  div, p {
    width: 80px;
    height: 40px;
    top: 0;
    margin: 0;
    position: absolute;
    padding-top: 8px;
  }
  p {
    background: #fcc;
    text-align: center;
  }
  div {
    background: blue;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<p>Wrong</p>
<div></div>
<p>Wrong</p>
<div></div>
<p>Right!</p>
<div></div>
 
<script>
var getPos = function( n ) {
  return (Math.floor( n ) * 90) + "px";
};
$( "p" ).each(function( n ) {
  var r = Math.floor( Math.random() * 3 );
  var tmp = $( this ).text();
  $( this ).text( $( "p" ).eq( r ).text() );
  $( "p" ).eq( r ).text( tmp );
  $( this ).css( "left", getPos( n ) );
});
$( "div" )
  .each(function( n ) {
    $( this ).css( "left", getPos( n ) );
  })
  .css( "cursor", "pointer" )
  .click( function() {
    $( this ).fadeTo( 250, 0.25, function() {
      $( this )
        .css( "cursor", "" )
        .prev()
          .css({
            "font-weight": "bolder",
            "font-style": "italic"
          });
    });
  });
</script>
 
</body>
</html>

演示:

相關用法


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