码迷,mamicode.com
首页 > Web开发 > 详细

常见的网页加载进度条

时间:2017-09-03 18:44:48      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:val   inter   idt   top   样式   bottom   bsp   进度条   type   

 

		<style type="text/css">
			/*遮罩在加载页面上的div样式*/
			.loading{
				width: 100%;
				height: 100%;
				position: fixed;
				top: 0;
				left: 0;
				z-index: 100;
				background: white;
			}
			/*动态图片*/
			.pic{
				width: 64px;
				height: 64px;
				background: url(img/loading.gif);
				position: absolute;
				top: 0;
				bottom: 0;
				left: 0;
				right: 0;
				margin: auto;
			}
		</style>
		<script type="text/javascript">
			/*定时器加载*/
			/*$(function(){
				setInterval(function(){
					$(".loading").fadeOut();
				},3000);
				
			});*/
			
			/*通过加载状态事件*/
			document.onreadystatechange = function(){
				
				if(document.readyState == ‘complete‘){
					
					$(".loading").fadeOut();
				}
			}
			
		</script>
        <body>
                <div class="loading">
			<div class="pic"></div>			
		</div>    
        </body>

  

常见的网页加载进度条

标签:val   inter   idt   top   样式   bottom   bsp   进度条   type   

原文地址:http://www.cnblogs.com/vijayxu/p/7470266.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!