jQuery fadeIn()方法
jQuery中的fadeIn()方法是用来改变选定元素的不透明度,从隐藏到可见。隐藏的元素将不会被显示。
语法:
$(selector).fadeIn( speed, easing, callback )
参数:该方法接受上面提到的和下面描述的三个参数。
- speed:这是一个可选参数,用于指定渐变效果的速度。速度的默认值是400毫秒。速度的可能值是。
- milliseconds
- “slow”
- “fast”
- easing。这是一个可选的参数,用于指定元素到不同动画点的速度。缓和的默认值是 “摆动”。缓和的可能值是。
- “swing”
- “linear”
- callback。它是可选参数。该回调函数在fadeIn()方法完成后执行。
例子1:这个例子描述了速度为1000毫秒的fadeIn()方法。
<!DOCTYPE html>
<html>
<head>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<title>
fadeIn() Method in jQuery
</title>
<style>
#Outer {
border: 1px solid black;
padding-top: 40px;
height: 140px;
background: green;
display: none;
}
</style>
</head>
<body style="text-align:center;">
<div id="Outer">
<h1 style="color:white;">
GeeksForGeeks
</h1>
</div><br>
<button id="btn">
Fade In
</button>
<!-- jQuery script of fadeIn() method -->
<script>
(document).ready(function () {
("#btn").click(function () {
$("#Outer").fadeIn(1000);
});
});
</script>
</body>
</html>
输出:
实例2:本例描述了带有 “swing “缓和的fadeIn()方法。
<!DOCTYPE html>
<html>
<head>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<title>
fadeIn() Method in jQuery
</title>
<style>
#Outer {
border: 1px solid black;
padding-top: 40px;
height: 140px;
background: green;
display: none;
}
</style>
</head>
<body style="text-align:center;">
<div id="Outer">
<h1 style="color:white;">
GeeksForGeeks
</h1>
</div><br>
<button id="btn">
Fade In
</button>
<!-- jQuery script of fadeIn() method -->
<script>
(document).ready(function () {
("#btn").click(function () {
$("#Outer").fadeIn("swing");
});
});
</script>
</body>
</html>
输出: