jQuery fadeIn() 方法
-
定义和用法
fadeIn() 方法逐渐改变被选元素的不透明度,从隐藏到可见(褪色效果)。注释:隐藏的元素不会被完全显示(不再影响页面的布局)。提示:该方法通常与 fadeOut() 方法一起使用。 -
语法
$(selector).fadeIn(speed,easing,callback) -
参数
参数 描述 speed 可选。规定褪色效果的速度。可能的值:毫秒、"slow"、"fast"easing 可选。规定在动画的不同点上元素的速度。默认值为 "swing"。可能的值:- "swing" - 在开头/结尾移动慢,在中间移动快
- "linear" - 匀速移动
callback 可选。fadeIn() 方法执行完之后,要执行的函数。如需学习更多有关 callback 的内容,请访问我们的 jQuery Callback 这一章。 -
示例
下例演示了具有不同参数的fadeIn()方法:
尝试一下<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>欢迎来到蝴蝶教程</title> //此版本是百度cdn 1.11.1,当然你可以使用更高的版本,从2.0版本以上的是不支持ie6-8的 <script type="text/javascript" src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script> <script> $(document).ready(function () { $("button").click(function(){ $("#div1").fadeIn(); $("#div2").fadeIn("slow"); $("#div3").fadeIn(3000); }); }); </script> </head> <body> <p><button>点击我淡入</button></p> <div id="div1" style="display:none;width:80px;height:80px;background:red">div1</div> <div id="div2" style="display:none;width:80px;height:80px;background:blue">div2</div> <div id="div3" style="display:none;width:80px;height:80px;background:green">div3</div> </body> </html>
-