loading.css 398 B

12345678910111213141516171819202122232425
  1. /*蒙版*/
  2. .loading-mask {
  3. width: 100%;
  4. height: 100%;
  5. position: fixed;
  6. top: 0;
  7. left: 0;
  8. right: 0;
  9. bottom: 0;
  10. background-color: #fff;
  11. opacity: 0.3;
  12. filter: alpha(opacity = 30);
  13. z-index: 10000;
  14. }
  15. /*动态加载图片*/
  16. .loading {
  17. position: fixed;
  18. top: 0;
  19. left: 0;
  20. width: 100%;
  21. height: 100%;
  22. background: url(../img/loading.png) 50% 50% no-repeat;
  23. z-index: 10010;
  24. }