Multiple css3 animations

hi,

i have used kirupa’s excellent css3 animation tutorial to create a moving cloud. i have tried to extend the example to make the cloud firstly move onto the screen from above (an animation called moveIn), and then repeatedly move up and down (an animation called moveUpDown).

is there a way to combine the two separate animations? i googled around, and have tried:


animation: moveIn,moveUpDown;
animation-duration: 5s,2.5s;
animation-iteration-count: 1,infinite;

i read that this should execute both animations simultaneously (which isn’t what i want), but that doesn’t seem to work either. i’d rather not use javascript unless i have to!

thanks, arebee.