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;

link|improve this question

1  
whats wrong with using display:none, and are you doing raw javascript or using jquery? – xxxpigeonxxx Dec 18 '11 at 5:30
Either or... The problem with display:none is 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
1  
@user1090389 In the case "JS doesn't execute or the user has JS disabled", then how are you going to slide down the div without Javascript? – emaillenin Dec 18 '11 at 5:51
1  
@emaillenin, he is right, I also have the same fear sometimes. He might want to 1)hide via JS, 2)show+slide. So in case JS is off, nothing will happen (but the users will be able to see the content) – ajax333221 Dec 18 '11 at 6:05
@user1090389 Without javascript, how will you find out, if the page has been loaded completely? – emaillenin Dec 18 '11 at 6:30
show 9 more comments
feedback

3 Answers

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:

<div id="notification">Page load complete...</div>

CSS:

#notification {
    background-color: #F00;
    color: #FFF;
    height: 25px;
    position: absolute;
    top: -25px;
    width: 100%;
    transition: top 0.5s;
    -moz-transition: top 0.5s;
    -webkit-transition: top 0.5s;
    -o-transition: top 0.5s;
}

#notification.visible {
    top: 0px;
}

Javascript:

$(document).ready(function(){
    $("#notification").addClass("visible");
});
link|improve this answer
feedback
up vote 0 down vote accepted

This suits me better, although it does not slide down, fading in is good enough. http://jsfiddle.net/dqUaX/1/

link|improve this answer
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.

$(document).ready(function() {
     $(".MoreInfo").hide();
     $(".MoreInfo").slideUp(1).delay(2000).slideDown('slow');
});
link|improve this answer
This isn't what I want, I'm looking for something that unrolls not just "pops" down. – user1090389 Dec 18 '11 at 6:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.