常见的网页加载进度条
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常见的网页加载进度条相关的知识,希望对你有一定的参考价值。
<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>
以上是关于常见的网页加载进度条的主要内容,如果未能解决你的问题,请参考以下文章
当片段视图加载是异步任务的一部分时,如何在片段加载之前显示进度条?