Skip to content

Instantly share code, notes, and snippets.

@hex
Created April 30, 2010 09:08
Show Gist options
  • Select an option

  • Save hex/384979 to your computer and use it in GitHub Desktop.

Select an option

Save hex/384979 to your computer and use it in GitHub Desktop.
Preload images with CSS
#preloadedImages {
width: 0px;
height: 0px;
visibility:hidden;
background-image: url(path/to/image1.png);
background-image: url(path/to/image2.png);
background-image: url(path/to/image3.png);
background-image: url(path/to/image4.png);
background-image: url();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment