-
-
Save lakemove/3949890 to your computer and use it in GitHub Desktop.
The essence of this technique
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
//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