設定div元素漸隱效果程式碼例項

antzone發表於2017-04-03

以動畫平滑的動畫方式實現元素的隱藏效果,比瞬間隱藏的方式更為人性化。

下面就是一段使用jQuery實現的此效果,程式碼如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
#one{
  width:80px;
  height:80px;
  background-color:red;
}
#two{
  width:80px;
  height:80px;
  background-color:green;
}
#three{
  width:80px;
  height:80px;
  background-color:blue;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script>
$(document).ready(function(){
 $("#bt").click(function(){
   $("#one").fadeOut();
   $("#two").fadeOut("slow");
   $("#three").fadeOut(3000);
 });
});
</script>
</head>
<body>
<input type="button" id="bt" value="檢視效果"/>
<br>
<div id="one"></div><br>
<div id="two"></div><br>
<div id="three"></div>
</body>
</html>

相關文章