Re: [css3-transitions] Adding keyframes to transitions

On Apr 7, 2010, at 11:34 AM, Tab Atkins Jr. wrote:
>
> .slider > .box {
>  left: 0;
>  transition: left 1s play(bounce 1s);
> }

If I understand this right, both would happen at the same time.  We  
also need a syntax to have them play sequentially.  Perhaps a comma?

.slider > .box {
  left: 0;
  transition: left 1s, play(bounce 1s);
}

Received on Wednesday, 7 April 2010 16:43:53 UTC