123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- <template>
- <view class="u-wrap" :style="{
- opacity: Number(opacity),
- borderRadius: $u.addUnit(round),
- transition: `opacity ${time / 1000}s ease-in-out`
- }" :class="'u-lazy-item-' + elIndex">
- <view :class="'u-lazy-item-' + elIndex">
- <image :style="imgStyle" v-if="!isError" class="u-lazy-item"
- :src="isShow ? image : loadingImg" :mode="mode" @load="imgLoaded" @error="loadError" @tap="clickImg">
- </image>
- <image :style="imgStyle" class="u-lazy-item error" v-else
- :src="errorImg" :mode="mode" @load="errorImgLoaded" @tap="clickImg"></image>
- </view>
- </view>
- </template>
- <script>
- import props from './props.js';
- import mixin from '../../libs/mixin/mixin'
- import mpMixin from '../../libs/mixin/mpMixin';
- /**
- * lazyLoad 懒加载
- * @description 懒加载使用的场景为:页面有很多图片时,APP会同时加载所有的图片,导致页面卡顿,各个位置的图片出现前后不一致等.
- * @tutorial https://uview.d3u.cn/components/lazyLoad.html
- * @property {String Number} index 用户自定义值,在事件触发时回调,用以区分是哪个图片
- * @property {String} image 图片路径
- * @property {String} loading-img 预加载时的占位图
- * @property {String} error-img 图片加载出错时的占位图
- * @property {String} threshold 触发加载时的位置,见上方说明,单位 px(默认300)
- * @property {String Number} duration 图片加载成功时,淡入淡出时间,单位ms(默认)
- * @property {String} effect 图片加载成功时,淡入淡出的css动画效果(默认ease-in-out)
- * @property {Boolean} is-effect 图片加载成功时,是否启用淡入淡出效果(默认true)
- * @property {String Number} round 图片圆角值,单位px(默认0)
- * @property {String Number} height 图片高度,注意:实际高度可能受mode参数影响(默认450)
- * @property {String Number} mode 图片的裁剪模式,详见image组件裁剪模式(默认widthFix)
- * @event {Function} click 点击图片时触发
- * @event {Function} load 图片加载成功时触发
- * @event {Function} error 图片加载失败时触发
- * @example <u-lazy-load :image="image" :loading-img="loadingImg" :error-img="errorImg"></u-lazy-load>
- */
- export default {
- name: 'u-lazy-load',
- mixins: [mpMixin, mixin, props],
- data() {
- return {
- isShow: false,
- opacity: 1,
- time: this.duration,
- loadStatus: '', // 默认是懒加载中的状态
- isError: false, // 图片加载失败
- }
- },
- computed: {
- elIndex(){
- return this.$u.guid()
- },
- getThreshold() {
- // 先取绝对值,因为threshold可能是负数,最后根据this.threshold是正数或者负数,重新还原
- let thresholdPx = Math.abs(this.threshold);
- return this.threshold < 0 ? -thresholdPx : thresholdPx;
- },
- imgStyle() {
- return {
- borderRadius: uni.$u.addUnit(this.round),
- height: uni.$u.addUnit(this.height)
- }
- }
- },
- created() {
- // 由于一些特殊原因,不能将此变量放到data中定义
- this.observer = {};
- // 初始化observers对象来存储所有的observer实例
- this.observers = {};
- },
- watch: {
- isShow(nVal) {
- // 如果是不开启过渡效果,直接返回
- if (!this.isEffect) return;
- this.time = 0;
- // 原来opacity为1(不透明,是为了显示占位图),改成0(透明,意味着该元素显示的是背景颜色,默认的白色),再改成1,是为了获得过渡效果
- this.opacity = 0;
- // 延时30ms,否则在浏览器H5,过渡效果无效
- setTimeout(() => {
- this.time = this.duration;
- this.opacity = 1;
- }, 30)
- },
- // 图片路径发生变化时,需要重新标记一些变量,否则会一直卡在某一个状态,比如isError
- image(n) {
- if (!n) {
- // 如果传入null或者'',或者undefined,标记为错误状态
- this.isError = true;
- } else {
- this.init();
- this.isError = false;
- }
- }
- },
- // #ifdef VUE3
- emits: ['click','load','error'],
- // #endif
- methods: {
- // 用于重新初始化
- init() {
- this.isError = false;
- this.loadStatus = '';
- },
- // 点击图片触发的事件,loadlazy-还是懒加载中状态,loading-图片正在加载,loaded-图片加加载完成
- clickImg() {
- let whichImg = '';
- // 如果isShow为false,意味着图片还没开始加载,点击的只能是最开始的占位图
- if (this.isShow == false) whichImg = 'lazyImg';
- // 如果isError为true,意味着图片加载失败,这是只剩下错误的占位图,所以点击的只能是错误占位图
- // 当然,也可以给错误的占位图元素绑定点击事件,看你喜欢~
- else if (this.isError == true) whichImg = 'errorImg';
- // 总共三张图片,除了两个占位图,剩下的只能是正常的那张图片了
- else whichImg = 'realImg';
- // 只通知当前图片的index
- this.$emit('click', this.index);
- },
- // 图片加载完成事件,可能是加载占位图时触发,也可能是加载真正的图片完成时触发,通过isShow区分
- imgLoaded() {
- // 占位图加载完成
- if (this.loadStatus == '') {
- this.loadStatus = 'lazyed';
- }
- // 真正的图片加载完成
- else if (this.loadStatus == 'lazyed') {
- this.loadStatus = 'loaded';
- this.$emit('load', this.index);
- }
- },
- // 错误的图片加载完成
- errorImgLoaded() {
- this.$emit('error', this.index);
- },
- // 图片加载失败
- loadError() {
- this.isError = true;
- },
- disconnectObserver(observerName) {
- // 使用observers对象替代动态属性访问,避免生产环境警告
- const observer = this.observers[observerName];
- observer && observer.disconnect();
- },
- },
- // #ifdef VUE2
- beforeDestroy() {
- // 销毁页面时,可能还没触发某张很底部的懒加载图片,所以把这个事件给去掉
- // 清理所有的observer实例
- this.disconnectObserver('contentObserver');
- },
- // #endif
-
- // #ifdef VUE3
- beforeUnmount() {
- // 销毁页面时,可能还没触发某张很底部的懒加载图片,所以把这个事件给去掉
- // 清理所有的observer实例
- this.disconnectObserver('contentObserver');
- },
- // #endif
- mounted() {
- // 此uOnReachBottom事件由mixin.js发出,目的是让页面到底时,保证所有图片都进行加载,做到绝对稳定且可靠
- this.$nextTick(() => {
- uni.$once('uOnReachBottom', () => {
- if (!this.isShow) this.isShow = true;
- });
- // mounted的时候,不一定挂载了这个元素,延时30ms,否则会报错或者不报错,但是也没有效果
- uni.$u.sleep(10).then(() => {
- // 使用组件实例方法创建observer,避免传递this参数
- this.disconnectObserver('contentObserver');
-
- let contentObserver;
- if(this.createIntersectionObserver) {
- contentObserver = this.createIntersectionObserver();
- }else{
- contentObserver = uni.createIntersectionObserver(this);
- }
-
- // 要理解这里怎么计算的,请看这个:
- // https://blog.csdn.net/qq_25324335/article/details/83687695
- contentObserver.relativeToViewport({
- bottom: this.getThreshold,
- }).observe('.u-lazy-item-' + this.elIndex, (res) => {
- if (res.intersectionRatio > 0) {
- // 懒加载状态改变
- this.isShow = true;
- // 如果图片已经加载,去掉监听,减少性能的消耗
- this.disconnectObserver('contentObserver');
- }
- })
- // 将observer实例保存到observers对象中
- this.observers.contentObserver = contentObserver;
- })
- })
- }
- }
- </script>
- <style scoped lang="scss">
- @import '../../libs/css/components.scss';
- .u-wrap {
- background-color: #eee;
- overflow: hidden;
- }
- .u-lazy-item {
- width: 100%;
- // 骗系统开启硬件加速
- transform: transition3d(0, 0, 0);
- // 防止图片加载"闪一下"
- will-change: transform;
- /* #ifndef APP-NVUE */
- display: block;
- /* #endif */
- }
- </style>
|