css - CSS3, WebKit Transition Order? How to queue to the transitions? -
i have following:
-webkit-transition-property: top, bottom, z-index; -webkit-transition-duration: 0.5s; problem don't want z-index transition until after top & bottom done.
is there way tell webkit transition transition top/bottom , when done, z-index instantly or duration, either way?
thanks
you have specify delay on z-index transition:
-webkit-transition-property: top, bottom, z-index; -webkit-transition-duration: 0.5s; -webkit-transition-delay: 0s, 0s, .5s;
Comments
Post a Comment