Javascript preload images for css background-image change

前端 未结 4 1209
猫巷女王i
猫巷女王i 2021-01-15 06:16

I am developing a website which requires the background image of a div to change on hover of a link.

The way it works is by:



        
4条回答
  •  误落风尘
    2021-01-15 07:00

    pretty simple to preload images, something like:

    var img = new Image();
    img.src = "/path/to/image.jpg";
    

    This could be in a window.load or dom:ready event somewhere

提交回复
热议问题