嗨,我正在使用这个插件在显示之前预加载所有内容。 http://www.gayadesign.com/diy/queryloader2-preload-your-images-with-ease/
但我不知道为什么这不起作用.. 这是演示
HTML
<div class="preload">
<img src="http://placehold.it/500/500" />
<img src="http://placehold.it/300/500" />
<img src="http://placehold.it/600/500" />
<img src="http://placehold.it/400/500" />
</div>
JS
$(document).ready(function () {
$("body").queryLoader2({
barColor: "#cccccc",
backgroundColor: "#ffffff",
percentage: true,
barHeight: 3,
completeAnimation: "fade",
minimumTime: 200
});
});