Added CSS3 rotation for Gecko (Firefox).

This commit is contained in:
Nahir Acosta 2011-06-03 19:55:43 -07:00
parent c73af11ba6
commit e2d2db202a

View file

@ -96,11 +96,22 @@
}
}
@-moz-keyframes rotate {
from {
-moz-transform: rotate(0deg);
}
to {
-moz-transform: rotate(360deg);
}
}
.rideSpinners
{
-webkit-animation-name: rotate;
-webkit-animation-duration: 5s;
-webkit-animation-iteration-count: infinite;
}
-moz-animation-name: rotate;
-moz-animation-duration: 5s;
-moz-animation-iteration-count: infinite;
}