The spinning icon has an amazing effect, but I believe it will be useful a blinking (fade in/ fade out) effect for signaling events in the interface. This could be done with transparency, using CSS3 transformations.
Sample:
@keyframes fa-blink {
0% { opacity: 1; }
25% { opacity: 0.25; }
50% { opacity: 0.5; }
75% { opacity: 0.75; }
100% { opacity: 0; }
}
.fa-blink {
-webkit-animation: fa-blink .75s linear infinite;
-moz-animation: fa-blink .75s linear infinite;
-ms-animation: fa-blink .75s linear infinite;
-o-animation: fa-blink .75s linear infinite;
animation: fa-blink .75s linear infinite;
}
BTW, great job!
Well done, mate!
+1
+1
+1
+1
+1
well done
+1
+1
+1
little note: the 0.25 and 0.75 are misplaced
+1
+1
+1
+1
+1
+1
Most helpful comment
+1
little note: the 0.25 and 0.75 are misplaced