ball-scale.css 370 B

123456789101112131415161718
  1. @keyframes ball-scale {
  2. 0% {
  3. transform: scale(0); }
  4. 100% {
  5. transform: scale(1);
  6. opacity: 0; } }
  7. .ball-scale > div {
  8. background-color: #55595c;
  9. width: 15px;
  10. height: 15px;
  11. border-radius: 100%;
  12. margin: 2px;
  13. animation-fill-mode: both;
  14. display: inline-block;
  15. height: 60px;
  16. width: 60px;
  17. animation: ball-scale 1s 0s ease-in-out infinite; }