u-image.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  4. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  5. */
  6. .u-image.data-v-32babe48 {
  7. position: relative;
  8. -webkit-transition: opacity 0.5s ease-in-out;
  9. transition: opacity 0.5s ease-in-out;
  10. }
  11. .u-image__image.data-v-32babe48 {
  12. width: 100%;
  13. height: 100%;
  14. }
  15. .u-image__loading.data-v-32babe48, .u-image__error.data-v-32babe48 {
  16. position: absolute;
  17. top: 0;
  18. left: 0;
  19. width: 100%;
  20. height: 100%;
  21. display: -webkit-box;
  22. display: -webkit-flex;
  23. display: flex;
  24. -webkit-box-orient: horizontal;
  25. -webkit-box-direction: normal;
  26. -webkit-flex-direction: row;
  27. flex-direction: row;
  28. -webkit-box-align: center;
  29. -webkit-align-items: center;
  30. align-items: center;
  31. -webkit-box-pack: center;
  32. -webkit-justify-content: center;
  33. justify-content: center;
  34. background-color: #f3f4f6;
  35. color: #909399;
  36. font-size: 46rpx;
  37. }