当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。