Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to set sequence transition delays through pure CSS.

in JS i would use something like a for loop and a counter to stagger the delay value. Can this be done in CSS with the

Also is there a way to set multiple properties on a transition shorthand. The example below shows just top when I try to put others it doesn't work.

Single property

 -moz-transition: top 0.3s ease-out 0s;

Multiple properties

 -moz-transition: top left bottom 0.3s ease-out 0s;

The second question is less important that the first.

share|improve this question
2  
"Can this be done in CSS with the" ? – Rich Bradshaw Sep 17 '12 at 21:12

1 Answer

There are two questions here, but for question two, you can use the long hand versions instead:

-moz-transition-property: top, left, bottom;
-moz-transition-duration:0.3s
etc.

For question 1, it's not really clear what you are asking – you have realised you can set delays, so what are you looking to do that can't be solved by just adding a delay?

To be honest, you are extremely likely to have to use JS for anything more complex, as there is usually some logic required that can't be done in CSS.

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.