我想要做的是:等待所有图像都预先加载,然后才执行所有其他javascript代码。就我而言,它可以(但不是必须)有一个“加载......”的消息。
事实是我在身体背景中有一个非常大的图像和另外两个也更大的图像,所以我想预加载它们然后它们会立即显示并且不会有那么难看的“装载”图像效果。
这就是我现在使用的,但它并不好:
$(document).ready(function()
{
preloadImages();
...some other code...
function preloadImages(){
imagePreloader([
'images/1.png',
'images/2.jpg',
'images/3.png',
]);
}
function imagePreloader(arrayOfImages) {
$(arrayOfImages).each(function(){
(new Image()).src = this;
});
}
}
我不知道,也许我应该在.ready()之外的某个地方调用这个预加载器?或者......那样,请帮忙......
是的,是的,我也读了this帖子,我不知道为什么,但.ready()对我来说更快:( 修改
好的,最后我得到了这个东西。我的问题?我把等待的div设置错了。这是我现在的代码:我有加载div,我在上面显示所有图像,然后当所有图像加载时(使用$(window)。load(function(){...});如我所建议,隐藏该div。 / p>
<div id="loading">
<div id="waiting">
<img class="loadingGif" src="images/loading.gif">
</div>
</div>
#loading
{
background-size: 100%;
background-color:#000;
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
z-index:999;
}
#waiting
{
margin-left: auto;
margin-right: auto;
position:absolute;
top: 39%;
left: 27.81%;
width: 45%;
height: 150px;
background-color: #FFF;
border: 12px solid #FF771C;
text-align: center;
}
我的jQuery代码是这样的:
$(window).load(function()
{
$('#loading').addClass('hidden');
...
}
答案 0 :(得分:8)
您可以在...上执行脚本,而不是尝试预加载。
window.onload = function(){..}
在加载所有图像之前不会触发。
答案 1 :(得分:7)
我有一个名为waitForImages的插件,可以在下载后代图像时附加回调。
在您的情况下,如果您想等待所有资产下载,$(window).load()
可能没问题。但你可以用我的插件做得更酷一些:)
var loading = $('#loading');
$('body').waitForImages(function()
{
loading.addClass('hidden');
}, function(loaded, total)
{
loading.html(loaded + ' of ' + total);
});
答案 2 :(得分:1)
我认为您正在寻找的是javascript:onLoad(),一旦浏览器完成加载就会调用它。
答案 3 :(得分:1)
只有在加载后才能显示图像:
<img src="hdimg.jpg" width="1920" height="1080" style="display:none;" id="img1">
<script type="text/javascript">
$('#img1').load(function(){
$(this).css({'display':'block'})
});
</script>
答案 4 :(得分:1)
waitForImages插件很有意思,但解决方案可以通过以下方式实现:
var counter = 0;
var size = $('img').length;
$("img").load(function() { // many or just one image(w) inside body or any other container
counter += 1;
counter === size && $('body').css('background-color', '#fffaaa');
}).each(function() {
this.complete && $(this).load();
});
答案 5 :(得分:0)
我相信最好的jQuery选项是使用ajax get call:
$.get('image.png', {}, function(){
// Do whatever you want here, this wont execute until image.png is preloaded
});