ball-scale-random.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. @-webkit-keyframes ball-scale {
  2. 0% {
  3. -webkit-transform : scale(0);
  4. transform : scale(0);
  5. }
  6. 100% {
  7. -webkit-transform : scale(1);
  8. transform : scale(1);
  9. opacity : 0;
  10. }
  11. }
  12. @-moz-keyframes ball-scale {
  13. 0% {
  14. -moz-transform : scale(0);
  15. transform : scale(0);
  16. }
  17. 100% {
  18. -moz-transform : scale(1);
  19. transform : scale(1);
  20. opacity : 0;
  21. }
  22. }
  23. @-o-keyframes ball-scale {
  24. 0% {
  25. -o-transform : scale(0);
  26. transform : scale(0);
  27. }
  28. 100% {
  29. -o-transform : scale(1);
  30. transform : scale(1);
  31. opacity : 0;
  32. }
  33. }
  34. @keyframes ball-scale {
  35. 0% {
  36. -webkit-transform : scale(0);
  37. -moz-transform : scale(0);
  38. -o-transform : scale(0);
  39. transform : scale(0);
  40. }
  41. 100% {
  42. -webkit-transform : scale(1);
  43. -moz-transform : scale(1);
  44. -o-transform : scale(1);
  45. transform : scale(1);
  46. opacity : 0;
  47. }
  48. }
  49. .ball-scale > div {
  50. background-color : #55595C;
  51. width : 15px;
  52. height : 15px;
  53. border-radius : 100%;
  54. margin : 2px;
  55. -webkit-animation-fill-mode : both;
  56. -moz-animation-fill-mode : both;
  57. -o-animation-fill-mode : both;
  58. animation-fill-mode : both;
  59. display : inline-block;
  60. height : 60px;
  61. width : 60px;
  62. -webkit-animation : ball-scale 1s 0s ease-in-out infinite;
  63. -moz-animation : ball-scale 1s 0s ease-in-out infinite;
  64. -o-animation : ball-scale 1s 0s ease-in-out infinite;
  65. animation : ball-scale 1s 0s ease-in-out infinite;
  66. }
  67. .ball-scale-random {
  68. width : 37px;
  69. height : 40px;
  70. }
  71. .ball-scale-random > div {
  72. background-color : #55595C;
  73. width : 15px;
  74. height : 15px;
  75. border-radius : 100%;
  76. margin : 2px;
  77. -webkit-animation-fill-mode : both;
  78. -moz-animation-fill-mode : both;
  79. -o-animation-fill-mode : both;
  80. animation-fill-mode : both;
  81. position : absolute;
  82. display : inline-block;
  83. height : 30px;
  84. width : 30px;
  85. -webkit-animation : ball-scale 1s 0s ease-in-out infinite;
  86. -moz-animation : ball-scale 1s 0s ease-in-out infinite;
  87. -o-animation : ball-scale 1s 0s ease-in-out infinite;
  88. animation : ball-scale 1s 0s ease-in-out infinite;
  89. }
  90. .ball-scale-random > div:nth-child(1) {
  91. margin-right : -7px;
  92. -webkit-animation : ball-scale 1s 0.2s ease-in-out infinite;
  93. -moz-animation : ball-scale 1s 0.2s ease-in-out infinite;
  94. -o-animation : ball-scale 1s 0.2s ease-in-out infinite;
  95. animation : ball-scale 1s 0.2s ease-in-out infinite;
  96. }
  97. .ball-scale-random > div:nth-child(3) {
  98. margin-right : -2px;
  99. margin-top : 9px;
  100. -webkit-animation : ball-scale 1s 0.5s ease-in-out infinite;
  101. -moz-animation : ball-scale 1s 0.5s ease-in-out infinite;
  102. -o-animation : ball-scale 1s 0.5s ease-in-out infinite;
  103. animation : ball-scale 1s 0.5s ease-in-out infinite;
  104. }