阅读背景:

页面请求完成显示(页面未加载完成时等待的效果)

来源:互联网 
<html>
<head>
<script src="https://cdn.bootcss.com/jquery/3.1.1/jquery.min.js"></script>
<style>
.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('https://img-blog.csdn.net/20161205162919763') 50% 50% no-repeat rgb(249,249,249);
}
</style>    
</head>
<body onload="load()">
<div id="loading" class="loader" >
</div>
<!--你的内容-->
</body>
<script type="text/javascript">
function load(){
	$("#loading").fadeOut("slow");
}
</script>
</html><html>
<head>
<script src="https://cdn.bootcss.



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: