Skip to content

Instantly share code, notes, and snippets.

@lakemove
Created October 25, 2012 01:02
Show Gist options
  • Save lakemove/3949890 to your computer and use it in GitHub Desktop.
Save lakemove/3949890 to your computer and use it in GitHub Desktop.
The essence of this technique
//pure-CSS drop down menus
div.menu-bar ul ul {
display: none;
}
div.menu-bar li:hover > ul {
display: block;
}
//image pre-loader
function preloadImages() {
if (document.images) {
for (var i = 0; i < preloadImages.arguments.length; i++) {
(new Image()).src = preloadImages.arguments[i];
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment