mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2025-01-15 01:30:28 +08:00
fa-spin-reverse
I attempted to use fa-history and then add fa-spin to it. Seemed as if the icon would work but the spin was going in the wrong direction. So I just applied reverse to the fa-spin class animations and it seems to work correctly. The code is not without its problems as it does not seem to work in IE. Here is the code again separately from the file. .fa-spin-reverse { -webkit-animation: spin 2s infinite linear reverse; -moz-animation: spin 2s infinite linear reverse; -o-animation: spin 2s infinite linear reverse; animation: spin 2s infinite linear reverse; }
This commit is contained in:
parent
2649d91d18
commit
0864408722
6
css/font-awesome.css
vendored
6
css/font-awesome.css
vendored
@ -83,6 +83,12 @@
|
||||
-o-animation: spin 2s infinite linear;
|
||||
animation: spin 2s infinite linear;
|
||||
}
|
||||
.fa-spin-reverse {
|
||||
-webkit-animation: spin 2s infinite linear reverse;
|
||||
-moz-animation: spin 2s infinite linear reverse;
|
||||
-o-animation: spin 2s infinite linear reverse;
|
||||
animation: spin 2s infinite linear reverse;
|
||||
}
|
||||
@-moz-keyframes spin {
|
||||
0% {
|
||||
-moz-transform: rotate(0deg);
|
||||
|
Loading…
Reference in New Issue
Block a user