Created
April 30, 2010 09:08
-
-
Save hex/384979 to your computer and use it in GitHub Desktop.
Preload images with CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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