加载资源方式

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);
	});

  

以上是关于加载资源方式的主要内容,如果未能解决你的问题,请参考以下文章

以编程方式替换片段

附:require加载资源的方式或者类型

以编程方式加载嵌入式资源文件

c_cpp 加载源图像固定用法(代码片段,不全)

分享前端开发常用代码片段

收藏|分享前端开发常用代码片段