loading.css 610 B

1234567891011121314151617181920212223242526272829303132333435
  1. @CHARSET "UTF-8";
  2. .loading_wrap {
  3. position: fixed;
  4. left: 0;
  5. top: 0;
  6. right: 0;
  7. bottom: 0;
  8. background: transparent;
  9. }
  10. .loading {
  11. position: absolute;
  12. left: 50%;
  13. top: 50%;
  14. margin-left: -45px;
  15. margin-top: -45px;
  16. width: 90px;
  17. height: 90px;
  18. background: url(../images/loading.png) no-repeat;
  19. background-size: 360px 90px;
  20. }
  21. .loading.animate {
  22. -webkit-animation: 0.6s animate_loading steps(4) infinite;
  23. }
  24. @-webkit-keyframes animate_loading {
  25. 0% {
  26. background-position: 0 50%;
  27. }
  28. 100% {
  29. background-position: -360px 50%;
  30. }
  31. }