u-image.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. <template>
  2. <view class="u-image" @tap="onClick" :style="[wrapStyle, backgroundStyle]">
  3. <image
  4. v-if="!isError"
  5. :src="src"
  6. :mode="mode"
  7. @error="onErrorHandler"
  8. @load="onLoadHandler"
  9. :lazy-load="lazyLoad"
  10. class="u-image__image"
  11. :style="{
  12. borderRadius: shape == 'circle' ? '50%' : $u.addUnit(borderRadius)
  13. }"
  14. ></image>
  15. <view
  16. v-if="showLoading && loading"
  17. class="u-image__loading"
  18. :style="{
  19. borderRadius: shape == 'circle' ? '50%' : $u.addUnit(borderRadius),
  20. backgroundColor: this.bgColor
  21. }"
  22. >
  23. <slot v-if="$slots.loading" name="loading" />
  24. <u-icon v-else :name="loadingIcon" :width="width" :height="height"></u-icon>
  25. </view>
  26. <view
  27. v-if="showError && isError && !loading"
  28. class="u-image__error"
  29. :style="{
  30. borderRadius: shape == 'circle' ? '50%' : $u.addUnit(borderRadius)
  31. }"
  32. >
  33. <slot v-if="$slots.error" name="error" />
  34. <u-icon v-else :name="errorIcon" :width="width" :height="height"></u-icon>
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. /**
  40. * Image 图片
  41. * @description 此组件为uni-app的image组件的加强版,在继承了原有功能外,还支持淡入动画、加载中、加载失败提示、圆角值和形状等。
  42. * @tutorial https://uviewui.com/components/image.html
  43. * @property {String} src 图片地址
  44. * @property {String} mode 裁剪模式,见官网说明
  45. * @property {String | Number} width 宽度,单位任意,如果为数值,则为rpx单位(默认100%)
  46. * @property {String | Number} height 高度,单位任意,如果为数值,则为rpx单位(默认 auto)
  47. * @property {String} shape 图片形状,circle-圆形,square-方形(默认square)
  48. * @property {String | Number} border-radius 圆角值,单位任意,如果为数值,则为rpx单位(默认 0)
  49. * @property {Boolean} lazy-load 是否懒加载,仅微信小程序、App、百度小程序、字节跳动小程序有效(默认 true)
  50. * @property {Boolean} show-menu-by-longpress 是否开启长按图片显示识别小程序码菜单,仅微信小程序有效(默认 false)
  51. * @property {String} loading-icon 加载中的图标,或者小图片(默认 photo)
  52. * @property {String} error-icon 加载失败的图标,或者小图片(默认 error-circle)
  53. * @property {Boolean} show-loading 是否显示加载中的图标或者自定义的slot(默认 true)
  54. * @property {Boolean} show-error 是否显示加载错误的图标或者自定义的slot(默认 true)
  55. * @property {Boolean} fade 是否需要淡入效果(默认 true)
  56. * @property {String Number} width 传入图片路径时图片的宽度
  57. * @property {String Number} height 传入图片路径时图片的高度
  58. * @property {Boolean} webp 只支持网络资源,只对微信小程序有效(默认 false)
  59. * @property {String | Number} duration 搭配fade参数的过渡时间,单位ms(默认 500)
  60. * @event {Function} click 点击图片时触发
  61. * @event {Function} error 图片加载失败时触发
  62. * @event {Function} load 图片加载成功时触发
  63. * @example <u-image width="100%" height="300rpx" :src="src"></u-image>
  64. */
  65. export default {
  66. name: 'u-image',
  67. props: {
  68. // 图片地址
  69. src: {
  70. type: String,
  71. default: ''
  72. },
  73. // 裁剪模式
  74. mode: {
  75. type: String,
  76. default: 'aspectFill'
  77. },
  78. // 宽度,单位任意
  79. width: {
  80. type: [String, Number],
  81. default: '100%'
  82. },
  83. // 高度,单位任意
  84. height: {
  85. type: [String, Number],
  86. default: 'auto'
  87. },
  88. // 图片形状,circle-圆形,square-方形
  89. shape: {
  90. type: String,
  91. default: 'square'
  92. },
  93. // 圆角,单位任意
  94. borderRadius: {
  95. type: [String, Number],
  96. default: 0
  97. },
  98. // 是否懒加载,微信小程序、App、百度小程序、字节跳动小程序
  99. lazyLoad: {
  100. type: Boolean,
  101. default: true
  102. },
  103. // 开启长按图片显示识别微信小程序码菜单
  104. showMenuByLongpress: {
  105. type: Boolean,
  106. default: true
  107. },
  108. // 加载中的图标,或者小图片
  109. loadingIcon: {
  110. type: String,
  111. default: 'photo'
  112. },
  113. // 加载失败的图标,或者小图片
  114. errorIcon: {
  115. type: String,
  116. default: 'error-circle'
  117. },
  118. // 是否显示加载中的图标或者自定义的slot
  119. showLoading: {
  120. type: Boolean,
  121. default: true
  122. },
  123. // 是否显示加载错误的图标或者自定义的slot
  124. showError: {
  125. type: Boolean,
  126. default: true
  127. },
  128. // 是否需要淡入效果
  129. fade: {
  130. type: Boolean,
  131. default: true
  132. },
  133. // 只支持网络资源,只对微信小程序有效
  134. webp: {
  135. type: Boolean,
  136. default: false
  137. },
  138. // 过渡时间,单位ms
  139. duration: {
  140. type: [String, Number],
  141. default: 500
  142. },
  143. // 背景颜色,用于深色页面加载图片时,为了和背景色融合
  144. bgColor: {
  145. type: String,
  146. default: '#f3f4f6'
  147. }
  148. },
  149. data() {
  150. return {
  151. // 图片是否加载错误,如果是,则显示错误占位图
  152. isError: false,
  153. // 初始化组件时,默认为加载中状态
  154. loading: true,
  155. // 不透明度,为了实现淡入淡出的效果
  156. opacity: 1,
  157. // 过渡时间,因为props的值无法修改,故需要一个中间值
  158. durationTime: this.duration,
  159. // 图片加载完成时,去掉背景颜色,因为如果是png图片,就会显示灰色的背景
  160. backgroundStyle: {}
  161. };
  162. },
  163. watch: {
  164. src(n) {
  165. if(!n) {
  166. // 如果传入null或者'',或者false,或者undefined,标记为错误状态
  167. this.isError = true;
  168. } else {
  169. this.isError = false;
  170. }
  171. }
  172. },
  173. computed: {
  174. wrapStyle() {
  175. let style = {};
  176. // 通过调用addUnit()方法,如果有单位,如百分比,px单位等,直接返回,如果是纯粹的数值,则加上rpx单位
  177. style.width = this.$u.addUnit(this.width);
  178. style.height = this.$u.addUnit(this.height);
  179. // 如果是配置了圆形,设置50%的圆角,否则按照默认的配置值
  180. style.borderRadius = this.shape == 'circle' ? '50%' : this.$u.addUnit(this.borderRadius);
  181. // 如果设置圆角,必须要有hidden,否则可能圆角无效
  182. style.overflow = this.borderRadius > 0 ? 'hidden' : 'visible';
  183. if (this.fade) {
  184. style.opacity = this.opacity;
  185. style.transition = `opacity ${Number(this.durationTime) / 1000}s ease-in-out`;
  186. }
  187. return style;
  188. }
  189. },
  190. methods: {
  191. // 点击图片
  192. onClick() {
  193. this.$emit('click');
  194. },
  195. // 图片加载失败
  196. onErrorHandler() {
  197. this.loading = false;
  198. this.isError = true;
  199. this.$emit('error');
  200. },
  201. // 图片加载完成,标记loading结束
  202. onLoadHandler() {
  203. this.loading = false;
  204. this.isError = false;
  205. this.$emit('load');
  206. // 如果不需要动画效果,就不执行下方代码,同时移除加载时的背景颜色
  207. // 否则无需fade效果时,png图片依然能看到下方的背景色
  208. if (!this.fade) return this.removeBgColor();
  209. // 原来opacity为1(不透明,是为了显示占位图),改成0(透明,意味着该元素显示的是背景颜色,默认的灰色),再改成1,是为了获得过渡效果
  210. this.opacity = 0;
  211. // 这里设置为0,是为了图片展示到背景全透明这个过程时间为0,延时之后延时之后重新设置为duration,是为了获得背景透明(灰色)
  212. // 到图片展示的过程中的淡入效果
  213. this.durationTime = 0;
  214. // 延时50ms,否则在浏览器H5,过渡效果无效
  215. setTimeout(() => {
  216. this.durationTime = this.duration;
  217. this.opacity = 1;
  218. setTimeout(() => {
  219. this.removeBgColor();
  220. }, this.durationTime);
  221. }, 50);
  222. },
  223. // 移除图片的背景色
  224. removeBgColor() {
  225. // 淡入动画过渡完成后,将背景设置为透明色,否则png图片会看到灰色的背景
  226. this.backgroundStyle = {
  227. backgroundColor: 'transparent'
  228. };
  229. }
  230. }
  231. };
  232. </script>
  233. <style scoped lang="scss">
  234. @import '../../libs/css/style.components.scss';
  235. .u-image {
  236. position: relative;
  237. transition: opacity 0.5s ease-in-out;
  238. &__image {
  239. width: 100%;
  240. height: 100%;
  241. }
  242. &__loading,
  243. &__error {
  244. position: absolute;
  245. top: 0;
  246. left: 0;
  247. width: 100%;
  248. height: 100%;
  249. @include vue-flex;
  250. align-items: center;
  251. justify-content: center;
  252. background-color: $u-bg-color;
  253. color: $u-tips-color;
  254. font-size: 46rpx;
  255. }
  256. }
  257. </style>