当前位置:   article > 正文

jQuery 淡入淡出动画 fadeIn(); fadeOut(); fadeToggle(); fadeTo();_fadeout().fadein();

fadeout().fadein();
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    div {
      width: 300px;
      height: 300px;
      display: none;
      background-color: pink;
    }
  </style>
  <script src="jquery-3.4.1.js"></script>
  <script>
    $(function () {
      // 点击按钮之后淡入动画
      $('button:eq(0)').click(function () {
        // 淡入动画1: fadeIn();
        // $('div').fadeIn();

        // 淡入动画2: fadeIn(2000); 毫秒值
        // $('div').fadeIn(2000);

        // 淡入动画3: fadeIn(字符串); slow-慢: 600ms; normal-正常: 400ms; fast-快: 200ms;
        // $('div').fadeIn('slow');
        // $('div').fadeIn('normal');
        // $('div').fadeIn('fast');

        // 淡入动画4: fadeIn(毫秒值, 回调函数);
        $('div').fadeIn('slow', function () {
          console.log('动画执行完毕');
        });
      })
      
      // 点击按钮之后淡出动画
      $('button:eq(1)').click(function () {
        // 淡出动画1: fadeOut();
        // $('div').fadeOut();

        // 淡出动画2: fadeOut(2000); 毫秒值
        // $('div').fadeOut(2000);

        // 淡出动画3: fadeOut(字符串); slow-慢: 600ms; normal-正常: 400ms; fast-快: 200ms;
        // $('div').fadeOut('slow');
        // $('div').fadeOut('normal');
        // $('div').fadeOut('fast');

        // 淡出动画4: slideUp(毫秒值, 回调函数);
        $('div').fadeOut('slow', function () {
          console.log('动画执行完毕');
        });
      })

      // 点击按钮之后切换动画
      $('button:eq(2)').click(function () {
        // 显示隐藏切换
        // $('div').fadeToggle()

        $('div').fadeToggle('slow', function () {
          console.log('动画执行完毕');
        });

        // ... 其他用法跟上面一致 
      })

      // 点击按钮之后修改透明度
      $('button:eq(3)').click(function () {
        // 动画显示到指定透明度值,必须加动画时间。
        // $('div').fadeTo(1000, 0.5);

        $('div').fadeTo(1000, 0.5, function () {
          console.log('动画执行完毕');
        });
      })
    })
  </script>
</head>
<body>
  <button>淡入</button>
  <button>淡出</button>
  <button>切换</button>
  <button>修改透明度</button>
  <div></div>
</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • demo 效果:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/660276
推荐阅读
相关标签
  

闽ICP备14008679号