Day: January 8, 2008

  • CSS Preload Images

    This is an interesting technique for preloading graphics. Resources: One here. This guy originated it, but it’s pulled down now. #preloadedImages { width: 0px; height: 0px; display: inline; background-image: url(path/to/image1.gif); background-image: url(path/to/image2.gif); background-image: url(path/to/image3.gif); background-image: url(path/to/image4.gif); background-image: url(); } This is much easier than using JS to do it. I need to experiment with it…