我在页面上有一些随机加载的图像,它们超过100kbs,是否可以将其完全加载然后淡入而不是逐步加载它?
我的JS看起来像这样......
(function($){
$.randomImage = {
defaults: {
//you can change these defaults to your own preferences.
path: '_images/', //change this to the path of your images
myImages: ['hero_eagle.jpg', 'hero_giraffe.jpg', 'hero_owl.jpg', 'hero_rabbit.jpg']
}
}
$.fn.extend({
randomImage:function(config) {
var config = $.extend({}, $.randomImage.defaults, config);
return this.each(function() {
var imageNames = config.myImages;
//get size of array, randomize a number from this
// use this number as the array index
var imageNamesSize = imageNames.length;
var lotteryNumber = Math.floor(Math.random()*imageNamesSize);
var winnerImage = imageNames[lotteryNumber];
var fullPath = config.path + winnerImage;
//put this image into DOM at class of randomImage
// alt tag will be image filename.
$(this).attr( { src: fullPath });
});
}
});
})(jQuery);
答案 0 :(得分:3)
应该可以,只需在样式表中将图像设置为display:none
,然后修改将src设置为此脚本的位:
$(this).attr( { src: fullPath }).load(function() {
$(this).fadeIn()
});
答案 1 :(得分:2)
从使用CSS隐藏的图像开始。然后使用:
$(document).ready(function() {
// Code goes here.
});
并在那里执行淡入淡出。
还有另一个问题,就是在这里讨论使用jQuery预加载图像:Preloading images with jQuery
引自最佳答案:
function preload(arrayOfImages) {
$(arrayOfImages).each(function(){
$('<img/>')[0].src = this;
// Alternatively you could use:
// (new Image()).src = this;
});
}
// Usage:
preload([
'img/imageName.jpg',
'img/anotherOne.jpg',
'img/blahblahblah.jpg'
]);
答案 2 :(得分:0)
如果您希望所有图像在淡入之前预先加载,并向用户显示加载消息,则可以使用以下内容:
var gotime = imgArray.length;
$(".maxCount").text(gotime);
var imgCounter = 0;
$.each(imgArray, function(){
$(new Image()).load(function(){
imgCounter++;
$(".presentCount").text(imgCounter);
if (--gotime < 1) {
$("#content").fadeIn();
}
}).attr('src', this);
});