Preload Images?

后端 未结 4 2023
轮回少年
轮回少年 2021-01-07 14:59

I have been looking into Preloading images with JQuery and came across this Preloading images with jQuery

Now can someone tell me, do I have to call the preloaded i

4条回答
  •  孤独总比滥情好
    2021-01-07 15:35

    You can preload all your images using this below:

    function loadImages(){
        var images = [
            'http://cdn.yourdomain.com/img/image1.png',
            'http://cdn.yourdomain.com/img/image2.jpg',
            'http://cdn.yourdomain.com/img/image3.jpg',
            'http://cdn.yourdomain.com/img/image4.jpg'
        ];
        $(images).each(function() {
            var image = $('').attr('src', this);
        });
    } 
    

提交回复
热议问题