ball-beat.css 887 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*========================================================
  2. DARK LAYOUT
  3. =========================================================*/
  4. @-webkit-keyframes ball-beat {
  5. 50% {
  6. opacity: 0.2;
  7. transform: scale(0.75);
  8. }
  9. 100% {
  10. opacity: 1;
  11. transform: scale(1);
  12. }
  13. }
  14. @keyframes ball-beat {
  15. 50% {
  16. opacity: 0.2;
  17. transform: scale(0.75);
  18. }
  19. 100% {
  20. opacity: 1;
  21. transform: scale(1);
  22. }
  23. }
  24. .ball-beat > div {
  25. background-color: #b8c2cc;
  26. width: 15px;
  27. height: 15px;
  28. border-radius: 100%;
  29. margin: 2px;
  30. -webkit-animation-fill-mode: both;
  31. animation-fill-mode: both;
  32. display: inline-block;
  33. -webkit-animation: ball-beat 0.7s 0s infinite linear;
  34. animation: ball-beat 0.7s 0s infinite linear;
  35. }
  36. .ball-beat > div:nth-child(2n-1) {
  37. -webkit-animation-delay: -0.35s !important;
  38. animation-delay: -0.35s !important;
  39. }