I have the -webkit-transition-duration property set on a div, whose height is set by another class. When I use jQuery to toggle the class, it the transition does something funky.

It goes all the way up, and then is set to the proper height instead of just moving from 50px height to automatic height which is what I expect it to do. What's the fix for this?

Here it is: http://jsfiddle.net/XcFxQ/1/

link|improve this question

53% accept rate
Very wierd... Animating through jQuery only doesn't seem to help. – Eric Nov 20 '11 at 22:31
feedback

2 Answers

up vote 2 down vote accepted

This works:

http://jsfiddle.net/Eric/XcFxQ/2/

Although the height is not strictly auto. It manually sets the height in order to make it animate.

link|improve this answer
Fantastic thanks NXT! – Camoy Nov 20 '11 at 22:39
@Camoy: No problem! – Eric Nov 20 '11 at 22:40
feedback

I was able to get it to work correctly without -webkit-transition-property and instead using jQuery 1.7 with jQuery UI as in this fiddle:

http://jsfiddle.net/pjFAt/

In my testing, this produced the cleanest, most robust results.

Now, I'm not sure if you're keen on including jQuery UI in your webpage. If not, it's my best guess that you might have to work around the rendering flaws using some more Javascript (ie. if hasClass, then animate, etc...)

link|improve this answer
Yeah, I'd prefer not to include jQuery UI, but I could probably work around it with jQuery's animate. I was hoping that there was a way to do this with CSS itself, but I guess not. Thanks ;) – Camoy Nov 20 '11 at 22:36
feedback

Your Answer

 
or
required, but never shown

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