加载资源方式
Posted LCFLY
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了加载资源方式相关的知识,希望对你有一定的参考价值。
<div id="preloader" style="display: none;"> <div id="status" style="display: none;"></div> <div id="loading" style="display: none;"> <span id="lmun" style="font-family:‘微软雅黑‘; font-size:">100</span>% </div> </div>
$(window).load(function() { var i = 0; function show(){ i++; $("#lmun").html(i); if($("#lmun").html()==100){ $(‘#status‘).fadeOut(); $(‘#loading‘).fadeOut(); $(‘#preloader‘).delay(100).fadeOut(‘slow‘,function(){ var _hash = window.location.hash; if(typeof(_hash) != ‘undefined‘ && _hash != ‘‘){ $(‘html, body‘).stop().animate({ scrollTop: $(_hash).offset().top }, 1000); } }); clearInterval(sh); } } sh=setInterval(show,10); });
以上是关于加载资源方式的主要内容,如果未能解决你的问题,请参考以下文章