Merge pull request #652 from nannubest/patch-1
Added CSS3 rotation for Gecko (Firefox).
This commit is contained in:
commit
215c00574d
1 changed files with 13 additions and 2 deletions
|
|
@ -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;
|
||||
|
||||
}
|
||||
Loading…
Reference in a new issue