ball-grid-beat.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. @keyframes ball-grid-beat {
  2. 50% {
  3. opacity: 0.7; }
  4. 100% {
  5. opacity: 1; } }
  6. .ball-grid-beat {
  7. width: 57px; }
  8. .ball-grid-beat > div:nth-child(1) {
  9. animation-delay: 0.38s;
  10. animation-duration: 1.28s; }
  11. .ball-grid-beat > div:nth-child(2) {
  12. animation-delay: -0.02s;
  13. animation-duration: 0.63s; }
  14. .ball-grid-beat > div:nth-child(3) {
  15. animation-delay: -0.05s;
  16. animation-duration: 1.47s; }
  17. .ball-grid-beat > div:nth-child(4) {
  18. animation-delay: -0.17s;
  19. animation-duration: 1.11s; }
  20. .ball-grid-beat > div:nth-child(5) {
  21. animation-delay: 0.72s;
  22. animation-duration: 1.32s; }
  23. .ball-grid-beat > div:nth-child(6) {
  24. animation-delay: 0.51s;
  25. animation-duration: 1.07s; }
  26. .ball-grid-beat > div:nth-child(7) {
  27. animation-delay: 0.52s;
  28. animation-duration: 1.25s; }
  29. .ball-grid-beat > div:nth-child(8) {
  30. animation-delay: 0.17s;
  31. animation-duration: 0.89s; }
  32. .ball-grid-beat > div:nth-child(9) {
  33. animation-delay: 0.38s;
  34. animation-duration: 1.56s; }
  35. .ball-grid-beat > div {
  36. background-color: #55595c;
  37. width: 15px;
  38. height: 15px;
  39. border-radius: 100%;
  40. margin: 2px;
  41. animation-fill-mode: both;
  42. display: inline-block;
  43. float: left;
  44. animation-name: ball-grid-beat;
  45. animation-iteration-count: infinite;
  46. animation-delay: 0; }