ball-pulse-round.css 780 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*========================================================
  2. DARK LAYOUT
  3. =========================================================*/
  4. @-webkit-keyframes ball-pulse-round {
  5. 0%, 80%, 100% {
  6. transform: scale(0);
  7. -webkit-transform: scale(0);
  8. }
  9. 40% {
  10. transform: scale(1);
  11. -webkit-transform: scale(1);
  12. }
  13. }
  14. @keyframes ball-pulse-round {
  15. 0%, 80%, 100% {
  16. transform: scale(0);
  17. -webkit-transform: scale(0);
  18. }
  19. 40% {
  20. transform: scale(1);
  21. -webkit-transform: scale(1);
  22. }
  23. }
  24. .ball-pulse-round > div {
  25. -webkit-animation-fill-mode: both;
  26. animation-fill-mode: both;
  27. width: 10px;
  28. height: 10px;
  29. -webkit-animation: ball-pulse-round 1.2s infinite ease-in-out;
  30. animation: ball-pulse-round 1.2s infinite ease-in-out;
  31. }