vote up 1 vote down star

I'm trying to animate a block level element using jQuery. The page loads with the element styled with display: none. Id like it to slideDown whilst transparent and then fadeIn the content using the callback, however slideDown appears to set the visibility to full before fadeIn is called, resulting in the content being visible during the slideDown animation.

Does anyone know of a way to accomplish this?

flag

67% accept rate
Could you explain whats the point of sliding down while transparent? The animation would not be seen, so why animate – Eran Galperin Dec 5 '08 at 0:58
I'm guessing he wants the vertical space to be taken before the element is shown – orip Dec 5 '08 at 1:04
That's right - the space is made then the content appears – Brendan Dec 5 '08 at 15:35
Did you try the solutions below? – orip Dec 6 '08 at 8:59

3 Answers

vote up 2 vote down check

a few probable issues with your code: are you setting the content to hide as well in the beginning? are you calling fadeIn during the slideDown callback?

here's some example HTML/code that will fadeIn after the slideDown

$('div').hide(); // make sure you hide both container/content

$('#container').slideDown('slow', function() {
    $('#content').fadeIn('slow');    // fade in of content happens after slidedown
});

html:

<div id="container">
    <div id="content">stuff</div>
</div>
link|flag
Using jQuery's .hide() rather than setting 'visibility' in CSS was the key. Thanks! – Brendan Jan 11 at 15:36
vote up 0 vote down

How about:

$('#hiddenElement').css("opacity", 0).slideDown().animate({opacity:1})
link|flag
I wonder why the downmod. As far as I can tell this works fine. – orip Dec 5 '08 at 16:04
vote up 0 vote down

Your description sounds like a variation of this problem, which I had to deal with the other day.

It only happens in IE, and only if you are rendering in quirks mode. So the easy solution, is to switch to standards mode. You can find a table of doctypes here that makes IE render in standards mode.

But if you are in the same situation as me where thats not an options, then you can apply a patch to you jQuery library, which you can find here.

link|flag

Your Answer

Get an OpenID
or

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