jQuery動態進度條程式碼例項

antzone發表於2017-03-14

進度條效果在很多應用中都有使用,下面就通過程式碼例項介紹一下,如何利用jquery實現此效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
#web_loading{
  z-index:99999;
  width:100%;
}
#web_loading div{
  width:0;
  height:5px;
  background:#FF9F15;
}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
  jQuery("#web_loading div").animate({width:"100%"},800,function(){ 
    setTimeout(function(){
   jQuery("#web_loading div").fadeOut(500); 
    },00) 
  }) 
})
</script>
</head>
<body>
<div id="web_loading">
  <div></div>
</div>
</body>
</html>

以上程式碼實現了我們的要求,程式碼非常的簡單,這裡就不多介紹了,具體可以參閱相閱讀。

相關閱讀:

1.animate()函式可以參閱jQuery animate()一章節。

2.setTimeout()函式可以參閱window setTimeout()一章節。 

3.fadeOut()函式可以參閱jQuery fadeOut()一章節。

相關文章