ball-grid-pulse.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*========================================================
  2. DARK LAYOUT
  3. =========================================================*/
  4. @-webkit-keyframes ball-grid-pulse {
  5. 0% {
  6. transform: scale(1);
  7. }
  8. 50% {
  9. transform: scale(0.5);
  10. opacity: 0.7;
  11. }
  12. 100% {
  13. transform: scale(1);
  14. opacity: 1;
  15. }
  16. }
  17. @keyframes ball-grid-pulse {
  18. 0% {
  19. transform: scale(1);
  20. }
  21. 50% {
  22. transform: scale(0.5);
  23. opacity: 0.7;
  24. }
  25. 100% {
  26. transform: scale(1);
  27. opacity: 1;
  28. }
  29. }
  30. .ball-grid-pulse {
  31. width: 57px;
  32. }
  33. .ball-grid-pulse > div:nth-child(1) {
  34. -webkit-animation-delay: 0.52s;
  35. animation-delay: 0.52s;
  36. -webkit-animation-duration: 0.79s;
  37. animation-duration: 0.79s;
  38. }
  39. .ball-grid-pulse > div:nth-child(2) {
  40. -webkit-animation-delay: 0.62s;
  41. animation-delay: 0.62s;
  42. -webkit-animation-duration: 0.87s;
  43. animation-duration: 0.87s;
  44. }
  45. .ball-grid-pulse > div:nth-child(3) {
  46. -webkit-animation-delay: 0.68s;
  47. animation-delay: 0.68s;
  48. -webkit-animation-duration: 1.36s;
  49. animation-duration: 1.36s;
  50. }
  51. .ball-grid-pulse > div:nth-child(4) {
  52. -webkit-animation-delay: 0.17s;
  53. animation-delay: 0.17s;
  54. -webkit-animation-duration: 1.32s;
  55. animation-duration: 1.32s;
  56. }
  57. .ball-grid-pulse > div:nth-child(5) {
  58. -webkit-animation-delay: -0.01s;
  59. animation-delay: -0.01s;
  60. -webkit-animation-duration: 1.46s;
  61. animation-duration: 1.46s;
  62. }
  63. .ball-grid-pulse > div:nth-child(6) {
  64. -webkit-animation-delay: 0.01s;
  65. animation-delay: 0.01s;
  66. -webkit-animation-duration: 1.11s;
  67. animation-duration: 1.11s;
  68. }
  69. .ball-grid-pulse > div:nth-child(7) {
  70. -webkit-animation-delay: 0.57s;
  71. animation-delay: 0.57s;
  72. -webkit-animation-duration: 1.37s;
  73. animation-duration: 1.37s;
  74. }
  75. .ball-grid-pulse > div:nth-child(8) {
  76. -webkit-animation-delay: 0.62s;
  77. animation-delay: 0.62s;
  78. -webkit-animation-duration: 1.51s;
  79. animation-duration: 1.51s;
  80. }
  81. .ball-grid-pulse > div:nth-child(9) {
  82. -webkit-animation-delay: 0.11s;
  83. animation-delay: 0.11s;
  84. -webkit-animation-duration: 0.86s;
  85. animation-duration: 0.86s;
  86. }
  87. .ball-grid-pulse > div {
  88. background-color: #b8c2cc;
  89. width: 15px;
  90. height: 15px;
  91. border-radius: 100%;
  92. margin: 2px;
  93. -webkit-animation-fill-mode: both;
  94. animation-fill-mode: both;
  95. display: inline-block;
  96. float: left;
  97. -webkit-animation-name: ball-grid-pulse;
  98. animation-name: ball-grid-pulse;
  99. -webkit-animation-iteration-count: infinite;
  100. animation-iteration-count: infinite;
  101. -webkit-animation-delay: 0;
  102. animation-delay: 0;
  103. }