1

我在页面上有一些随机加载的图像,它们超过 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);
4

3 回答 3

3

应该能够,只需display:none在样式表中将图像设置为并修改将 src 设置为此的脚本位:

$(this).attr( { src: fullPath }).load(function() {
  $(this).fadeIn()
});  
于 2012-03-15T12:54:24.053 回答
2

从使用 CSS 隐藏的图像开始。然后使用:

 $(document).ready(function() {
   // Code goes here.
 });

并在那里执行淡入。

还有另一个 SO 问题在这里讨论使用 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'
]);
于 2012-03-15T12:52:24.393 回答
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);
                });
于 2012-03-15T13:08:14.033 回答