ball-pulse-round.css 324 B

12345678910111213
  1. @keyframes ball-pulse-round {
  2. 0%, 80%, 100% {
  3. transform: scale(0);
  4. -webkit-transform: scale(0); }
  5. 40% {
  6. transform: scale(1);
  7. -webkit-transform: scale(1); } }
  8. .ball-pulse-round > div {
  9. animation-fill-mode: both;
  10. width: 10px;
  11. height: 10px;
  12. animation: ball-pulse-round 1.2s infinite ease-in-out; }