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

Popular posts from this blog

php - What is the difference between $_SERVER['PATH_INFO'] and $_SERVER['ORIG_PATH_INFO']? -

fortran - Function return type mismatch -

queue - mq_receive: message too long -