ball-grid-beat.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /*========================================================
  2. DARK LAYOUT
  3. =========================================================*/
  4. @-webkit-keyframes ball-grid-beat {
  5. 50% {
  6. opacity: 0.7;
  7. }
  8. 100% {
  9. opacity: 1;
  10. }
  11. }
  12. @keyframes ball-grid-beat {
  13. 50% {
  14. opacity: 0.7;
  15. }
  16. 100% {
  17. opacity: 1;
  18. }
  19. }
  20. .ball-grid-beat {
  21. width: 57px;
  22. }
  23. .ball-grid-beat > div:nth-child(1) {
  24. -webkit-animation-delay: -0.08s;
  25. animation-delay: -0.08s;
  26. -webkit-animation-duration: 0.75s;
  27. animation-duration: 0.75s;
  28. }
  29. .ball-grid-beat > div:nth-child(2) {
  30. -webkit-animation-delay: 0.18s;
  31. animation-delay: 0.18s;
  32. -webkit-animation-duration: 0.94s;
  33. animation-duration: 0.94s;
  34. }
  35. .ball-grid-beat > div:nth-child(3) {
  36. -webkit-animation-delay: 0.25s;
  37. animation-delay: 0.25s;
  38. -webkit-animation-duration: 0.73s;
  39. animation-duration: 0.73s;
  40. }
  41. .ball-grid-beat > div:nth-child(4) {
  42. -webkit-animation-delay: 0.05s;
  43. animation-delay: 0.05s;
  44. -webkit-animation-duration: 1.45s;
  45. animation-duration: 1.45s;
  46. }
  47. .ball-grid-beat > div:nth-child(5) {
  48. -webkit-animation-delay: 0.05s;
  49. animation-delay: 0.05s;
  50. -webkit-animation-duration: 1.29s;
  51. animation-duration: 1.29s;
  52. }
  53. .ball-grid-beat > div:nth-child(6) {
  54. -webkit-animation-delay: 0.15s;
  55. animation-delay: 0.15s;
  56. -webkit-animation-duration: 1.12s;
  57. animation-duration: 1.12s;
  58. }
  59. .ball-grid-beat > div:nth-child(7) {
  60. -webkit-animation-delay: 0.63s;
  61. animation-delay: 0.63s;
  62. -webkit-animation-duration: 1.07s;
  63. animation-duration: 1.07s;
  64. }
  65. .ball-grid-beat > div:nth-child(8) {
  66. -webkit-animation-delay: 0.75s;
  67. animation-delay: 0.75s;
  68. -webkit-animation-duration: 0.92s;
  69. animation-duration: 0.92s;
  70. }
  71. .ball-grid-beat > div:nth-child(9) {
  72. -webkit-animation-delay: 0.01s;
  73. animation-delay: 0.01s;
  74. -webkit-animation-duration: 1.08s;
  75. animation-duration: 1.08s;
  76. }
  77. .ball-grid-beat > div {
  78. background-color: #b8c2cc;
  79. width: 15px;
  80. height: 15px;
  81. border-radius: 100%;
  82. margin: 2px;
  83. -webkit-animation-fill-mode: both;
  84. animation-fill-mode: both;
  85. display: inline-block;
  86. float: left;
  87. -webkit-animation-name: ball-grid-beat;
  88. animation-name: ball-grid-beat;
  89. -webkit-animation-iteration-count: infinite;
  90. animation-iteration-count: infinite;
  91. -webkit-animation-delay: 0;
  92. animation-delay: 0;
  93. }