image.wxss 655 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* ==================
  2. 图片
  3. ==================== */
  4. image {
  5. max-width: 100%;
  6. display: inline-block;
  7. position: relative;
  8. z-index: 0;
  9. }
  10. image.loading::before {
  11. content: "";
  12. background-color: #f5f5f5;
  13. display: block;
  14. position: absolute;
  15. width: 100%;
  16. height: 100%;
  17. z-index: -2;
  18. }
  19. image.loading::after {
  20. content: "\e7f1";
  21. font-family: "icon";
  22. position: absolute;
  23. top: 0;
  24. left: 0;
  25. width: 32rpx;
  26. height: 32rpx;
  27. line-height: 32rpx;
  28. right: 0;
  29. bottom: 0;
  30. z-index: -1;
  31. font-size: 32rpx;
  32. margin: auto;
  33. color: #ccc;
  34. -webkit-animation: icon-spin 2s infinite linear;
  35. animation: icon-spin 2s infinite linear;
  36. display: block;
  37. }