<html>
<head>
<script src="http://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 οnlοad="load()">
<div id="loading" class="loader" >
</div>
<!--你的内容-->
</body>
<script type="text/javascript">
function load(){
$("#loading").fadeOut("slow");
}
</script>
</html>
预览地址:http://codepen.io/dddddd1/pen/qqodgL
参考:http://vr013.com/