jQuery fadeOut()方法

jQuery fadeOut()方法

jQuery的fadeOut()方法用于渐变隐藏元素。

语法 :

$(selector).fadeOut();
$(selector).fadeOut(speed,callback); 
$(selector).fadeOut(speed, easing, callback);

speed :这是一个可选参数,指定延迟的速度。可能的取值有slow(慢速)、fast(快速)和毫秒数。

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

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

让我们通过一个例子来演示jQuery fadeOut()效果。

<!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").fadeOut();("#div2").fadeOut("slow");
        $("#div3").fadeOut(3000);
    });
});
</script>
</head>
<body>
<p>See the fadeOut() method example with different parameters.</p>
<button>Click to fade out boxes</button><br><br>
<div id="div1" style="width:80px;height:80px;background-color:red;"></div><br>
<div id="div2" style="width:80px;height:80px;background-color:green;"></div><br>
<div id="div3" style="width:80px;height:80px;background-color:blue;"></div>
</body>
</html> 

输出:

jQuery fadeOut()方法

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程