我想实施一个解决方案,其中:
- 在加载 div #content 中的内容时,
- 隐藏 div #content,
- 显示 div #loading,
- 然后当 div #content 已加载时,
- 隐藏 div #loading,
- 淡入 div #content
我试过了:
html:
<div id="content">
<!--this stuff takes a long time to load-->
<img src="http://lorempixel.com/1920/1920/">
</div>
<div id="loading">
<!-- this is the loading gif -->
<img src="http://lorempixel.com/400/200/">
</div>
js:
// when user browses to page
$('#content').hide();
$('#loading').show();
// then when div #content has loaded, hide div #loading and fade in div #content
$('#content').bind('load', function() {
$('#loading').hide();
$('#content').fadeIn('slow');
});
这是我正在研究的jsfiddle:
http://jsfiddle.net/rwone/Y9CQ4/
谢谢你。