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


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