I am surprised by the fact that a CSS3 transition rule applied via jQuery after a jQuery-based CSS property change actually animates this property change. Please have a look at http://jsfiddle.net/zwatf/3/ :
Initially, a div is styled by two classes and has a certain height (200px) due to the default CSS properties of these two classes. The height is then modified with jQuery via removal of one class:
$('.container').removeClass('active');
This reduces the height from 200px to 15px.
After that, a transition rule is applied to the container via addition of a class:
$('.container').addClass('all-transition');
What is happening is that the reduction of the height becomes animated (on Firefox and Chrome, at least). In my world, this should not happen if the order of instructions has any meaning.
I guess this behavior can be very well explained. Why is that happening? How can I prevent it?
This is what I want to achieve:
- modify default style with jQuery (not animated by CSS3 transition!)
- apply transition rule with jQuery
- change a property with jQuery (animated by CSS3 transition)
(1) and (2) should happen as quickly as possible, so I do not like working with arbitrary delays.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…