I have a css3 animation, im using the code below to rotate a cube on the X-axis.
@-webkit-keyframes spin2 { from { -webkit-transform: rotateX(135deg); } to
You can use several transform functions in the transform property by separating them with a space:
transform
@-webkit-keyframes spin2 { from { -webkit-transform: rotateX(135deg) rotateY(135deg); } to { -webkit-transform: rotateX(855deg) rotateY(855deg); } }