How can I have a div hide as the page is loading and then slide down once the page loads? I don't want to use CSS display:none;
| |||
|
show 9 more comments
feedback
|
|
Give this fiddle a try: http://jsfiddle.net/ahr3U/ This basically uses CSS3 to set up all the parameters of the transition, (the transition property makes the animation possible) and then just adds the visible class once the document has loaded to trigger the animation. Here is the code: HTML:
CSS:
Javascript:
| |||
|
feedback
|
|
This suits me better, although it does not slide down, fading in is good enough. http://jsfiddle.net/dqUaX/1/ | |||
|
feedback
|
|
When page load, the div is hidden, even we can use, CSS for that, then after page is loaded, slide Up and down animations fires.
| |||
feedback
|
display:noneis that there is no backup in case the JS doesn't execute or the user has JS disabled. The content is just hidden – user1090389 Dec 18 '11 at 5:32