Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following CSS definitions:

.detailsCollapsed
{
   display:none;
   height:0%;
   width:100%;
   -webkit-transition:height 40s ease-in-out;
}

.detailsExpanded

{
    display:block;
    visibility:visible;
    height:100%;
    width:100%;
    -webkit-transition:height 40s ease-in-out;
}

These are applied to a div with some content inside of it.

I also have some javascript that when a div is clicked it changes the class name on the element. This works fine for expanding and collapsing but there is no animation on the iphone? (All other transitions I tried work fine with fluid animation) Any ideas?

share|improve this question

7 Answers

I've found a solution.

use "max-height" instead of "height", and let the webkit engine to calculate the height.

.detailsCollapsed {max-height:0;-webkit-transition:max-height 40s ease-in-out;}
.detailsExpanded {max-height:9999px;}

got it?


Edit: Important note for this answer by Cory Mawhorter

cvsguimaraes compensates for this by giving a transition time of 40 seconds to the example, and it appears to animate correctly. It's really animating from 0 to 9999px like you told it, however. I'd recommend you set a sane max-height per-situation.

share|improve this answer
1  
and here's a working example of this: jsfiddle.net/gryzzly/n5XfG/3 – gryzzly Jun 8 '11 at 14:49
7  
Note that (from my testing), animating max-height this way will cause inaccurate transition times. – Cory Mawhorter Aug 15 '11 at 20:28
4  
Grumble... enter should not submit my comment. cvsguimaraes compensates for this by giving a transition time of 40 seconds to the example, and it appears to animate correctly. It's really animating from 0 to 9999px like you told it, however. I'd recommend you set a sane max-height per-situation. – Cory Mawhorter Aug 15 '11 at 20:36
@CoryMawhorter You can edit your comments shortly after you post them, that's what I do when I forget there's no newlines in comments here. – Camilo Martin Aug 23 '12 at 22:39
1  
the transition delay is insane. – vsync Nov 30 '12 at 23:07

According to the W3C Spec on CSS3 Transitions, both length and percentage should be allowed for a transition on the property height. So I guess it's just a matter of time until providing a percentage is supported in browsers.

share|improve this answer

I've used the following solution for elements where i need to toggle between display none and block, and keep the transition effect:

function slidedown(element) {
    ...
    element.style.display = "block";
    var timerId = setTimeout(function(){
        element.style.webkitTransitionProperty = "height";
        element.style.webkitTransitionTiming = "linear";
        element.style.webkitTransitionDuration = "3.5s";
        element.style.height = "500px";
    }, 0);
    ...
}

the setTimeout function will force a short delay allowing the transition to occur after toggling the display property. Hope it helps.

share|improve this answer

i had the same issue. Transition worked fine when "collapsing", but appeared with no transition (like being "switched on") on "expanding", when "display:none" was set before.

I accidentally came to a working solution while debugging: simply querying the "offsetHeight" seems to force an internal re-render of the element.

something like this:

    showElement = function(){
       ...
       oEl.style.display = "block";
       var xDump = oEl.offsetHeight;
       oEl.className = "show";
    }

xDump is never used, but having it, made the differnce.

share|improve this answer
I worked around this by using cvsguimaraes's max-height solution and leaving height:auto. For the collapsed state, I set max-height:0; overflow:hidden; and collapse/expand then worked as expected. Then there is no need to use display:none. – Cory Mawhorter Aug 15 '11 at 20:39

Use jQuery. Specifically, slideToggle. This is the easiest, most elegant solution.

share|improve this answer
simple solution worked for my case!! Thanks @Daniel – bhargav Jan 10 at 8:13

It is the change from display:none to display:block that is stopping the transition. Try setting the collapsed style to display:block; height:0; overflow:hidden;

Note: a expanded height of auto will also stop the transition. If there is no height set on the containing block then a height of 100% is equal to a height of auto.

share|improve this answer

Hopefully you've worked around this already, but I'm just writing to say I ran into the same problem: WebKit, at least on iOS 4.1, will not animate a transition if it was defined on an element styled with "display: none;", just like Nicholas mentioned above.

If your concern in not rendering this element is performance, like in my case, then I propose another solution than setting the height to 0. In your body's onLoad event callback, save the element in a variable and remove it from the DOM. Then re-insert it when it comes time to show it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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