Added CSS3 rotation for Gecko (Firefox).
This commit is contained in:
parent
c73af11ba6
commit
e2d2db202a
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