I have a menu button that toggles the header bar at the top of my page. How can I make all of the contents of the div (.logo
and .nav
) fade in/appear only after the header div has finished expanding? Otherwise you can see the nav/logo elements rearranging themselves while the header
div expands.
A fiddle to illustrate: http://jsfiddle.net/L9cKt/3/
I'm thinking there is a way to delay the display: none;
for the .logo
and .nav
classes until a certain time after the click event.
Thanks ahead of time!