Merge pull request #652 from nannubest/patch-1

Added CSS3 rotation for Gecko (Firefox).
This commit is contained in:
Daniel Grippi 2011-06-03 20:42:22 -07:00
commit 215c00574d

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;
}