jQuery fadeIn()方法

jQuery fadeIn()方法

jQuery fadeIn() 方法用于淡入元素。

语法 :

$(selector).fadein();
$(selector).fadeIn(speed,callback); 
$(selector).fadeIn(speed, easing, callback);

speed : 它是一个可选参数。它指定延迟的速度。可能的值有slow、fast和毫秒。

easing : 它指定要用于过渡的缓动函数。

callback : 它也是一个可选参数。它指定在fadein()效果完成后要调用的函数。

让我们举一个例子来演示jQuery fadeIn()效果。

<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
(document).ready(function(){("button").click(function(){
        ("#div1").fadeIn();("#div2").fadeIn("slow");
        $("#div3").fadeIn(3000);
    });
});
</script>
</head>
<body>
<p>See the fadeIn() method example with different parameters.</p>
<button>Click to fade in boxes</button><br><br>
<div id="div1" style="width:80px;height:80px;display:none;background-color:red;"></div><br>
<div id="div2" style="width:80px;height:80px;display:none;background-color:green;"></div><br>
<div id="div3" style="width:80px;height:80px;display:none;background-color:blue;"></div>
</body>
</html> 

输出:

jQuery fadeIn()方法

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程