animation.css 186 B

123456789101112
  1. /*
  2. Animation example, for spinners
  3. */
  4. .animate-spin {
  5. animation: spin 2s linear infinite;
  6. display: inline-block;
  7. }
  8. @keyframes spin {
  9. 100% {
  10. transform: rotate(360deg);
  11. }
  12. }