loading.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. #loading{
  2. background-color: #FFF;
  3. height: 100%;
  4. width: 100%;
  5. position: absolute;
  6. z-index: 1;
  7. margin-top: 0px;
  8. top: 0px;
  9. }
  10. #loading-center{
  11. width: 100%;
  12. height: 100%;
  13. position: relative;
  14. }
  15. #loading-center-absolute {
  16. position: absolute;
  17. left: 50%;
  18. top: 50%;
  19. height: 150px;
  20. width: 150px;
  21. margin-top: -75px;
  22. margin-left: -75px;
  23. -moz-border-radius: 50% 50% 50% 50%;
  24. -webkit-border-radius: 50% 50% 50% 50%;
  25. border-radius: 50% 50% 50% 50%;
  26. }
  27. .object{
  28. width: 15px;
  29. height: 15px;
  30. background-color: #888888;
  31. position: absolute;
  32. -moz-border-radius: 50% 50% 50% 50%;
  33. -webkit-border-radius: 50% 50% 50% 50%;
  34. border-radius: 50% 50% 50% 50%;
  35. -webkit-animation: animate 0.8s infinite;
  36. animation: animate 0.8s infinite;
  37. }
  38. #object_one {
  39. top: 19px;
  40. left: 19px;
  41. }
  42. #object_two {
  43. top: 0px;
  44. left: 65px;
  45. -webkit-animation-delay: 0.1s;
  46. animation-delay: 0.1s;
  47. }
  48. #object_three {
  49. top: 19px;
  50. left: 111px;
  51. -webkit-animation-delay: 0.2s;
  52. animation-delay: 0.2s;
  53. }
  54. #object_four {
  55. top: 65px;
  56. left: 130px;
  57. -webkit-animation-delay: 0.3s;
  58. animation-delay: 0.3s;
  59. }
  60. #object_five {
  61. top: 111px;
  62. left: 111px;
  63. -webkit-animation-delay: 0.4s;
  64. animation-delay: 0.4s;
  65. }
  66. #object_six {
  67. top: 130px;
  68. left: 65px;
  69. -webkit-animation-delay: 0.5s;
  70. animation-delay: 0.5s;
  71. }
  72. #object_seven {
  73. top: 111px;
  74. left: 19px;
  75. -webkit-animation-delay: 0.6s;
  76. animation-delay: 0.6s;
  77. }
  78. #object_eight {
  79. top: 65px;
  80. left: 0px;
  81. -webkit-animation-delay: 0.7s;
  82. animation-delay: 0.7s;
  83. }
  84. @-webkit-keyframes animate {
  85. 25% {
  86. -ms-transform: scale(1.5);
  87. -webkit-transform: scale(1.5);
  88. transform: scale(1.5);
  89. }
  90. 75% {
  91. -ms-transform: scale(0);
  92. -webkit-transform: scale(0);
  93. transform: scale(0);
  94. }
  95. }
  96. @keyframes animate {
  97. 50% {
  98. -ms-transform: scale(1.5,1.5);
  99. -webkit-transform: scale(1.5,1.5);
  100. transform: scale(1.5,1.5);
  101. }
  102. 100% {
  103. -ms-transform: scale(1,1);
  104. -webkit-transform: scale(1,1);
  105. transform: scale(1,1);
  106. }
  107. }