ball-beat.css 434 B

12345678910111213141516171819
  1. @keyframes ball-beat {
  2. 50% {
  3. opacity: 0.2;
  4. transform: scale(0.75); }
  5. 100% {
  6. opacity: 1;
  7. transform: scale(1); } }
  8. .ball-beat > div {
  9. background-color: #55595c;
  10. width: 15px;
  11. height: 15px;
  12. border-radius: 100%;
  13. margin: 2px;
  14. animation-fill-mode: both;
  15. display: inline-block;
  16. animation: ball-beat 0.7s 0s infinite linear; }
  17. .ball-beat > div:nth-child(2n-1) {
  18. animation-delay: -0.35s !important; }