在你的 html 页面的 body 标签之后添加一个这样的 html 代码。选择你喜欢的任何图像。
<div id="preloader">
<img id="spinner" src="http://cssload.net/preloaders/circular.gif" alt="" />
</div>
使用这个 jquery 代码...
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
/* the preloader division is visible until the whole page loades and then fades out using this code */
$(window).load(function() {
$('#preloader').fadeOut(300, function() {
$(this).remove();
});
});
</script>
然后添加这个css代码
#preloader,#spinner {
position:fixed;
top:0; left:0; right:0; bottom:0; margin:auto;
background:#fff;
z-index:9999;
overflow:hidden;
}
它会工作......