11.jQuery之淡入淡出效果

Posted jianguo221

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了11.jQuery之淡入淡出效果相关的知识,希望对你有一定的参考价值。

 知识点:fadeIn   fadeOut  fadeToggle  fadeTo

 1     <style>
 2         div {
 3             width: 150px;
 4             height: 300px;
 5             background-color: pink;
 6             display: none;
 7         }
 8     </style>
 9     <button>淡入效果</button>
10     <button>淡出效果</button>
11     <button>淡入淡出切换</button>
12     <button>修改透明度</button>
13     <div></div>
14     <script>
15         $(function () {
16             $("button").eq(0).click(function () {
17                 // 淡入 fadeIn()
18                 $("div").fadeIn(1000);
19             })
20             $("button").eq(1).click(function () {
21                 // 淡出 fadeOut()
22                 $("div").fadeOut(1000);
23             })
24             $("button").eq(2).click(function () {
25                 // 淡入淡出切换 fadeToggle()
26                 $("div").fadeToggle(1000);
27             });
28             $("button").eq(3).click(function () {
29                 //  修改透明度 fadeTo() 这个速度和透明度要必须写
30                 $("div").fadeTo(1000, 0.5);
31             });
32         });
33     </script>

 

以上是关于11.jQuery之淡入淡出效果的主要内容,如果未能解决你的问题,请参考以下文章

jQuery效果之隐藏与显示淡入淡出滑动回调

jQuery动画效果之fadeIn,fadeOut(淡入淡出)

js多物体运动之淡入淡出效果

html想做个文字淡入淡出的效果

如何实现人物闪白的游戏特效

重复淡入淡出效果不起作用