Vue3 图片懒加载插件

插件定义

export const LazyLoadPlugin = {
    //如果没有写options参数,一定要将options赋与初始值,不然会报读取null的属性错误
    install(app,options = {}){
        //代替图片的loading图
        let defaultSrc = options.default 
        app.directive('lazy',{
            mounted(el,binding){
                LazyLoadPlugin.init(el,binding.value,defaultSrc)
                if('IntersectionObserver' in window){
                    LazyLoadPlugin.observe(el)
                }else {
                    LazyLoadPlugin.listenerScroll(el)
                }
            }
        })
    },

    //初始化
    init(el,val,def){
        //data-src存储真实的src
        el.setAttribute('data-src',val)
        //设置src为loading图
        el.setAttribute('src',def)
    },

    //利用IntersectionObserver监听el
    observe(el){
        let io = new IntersectionObserver( entries=>{
            let realSrc = el.dataset.src;
            if(entries[0].isIntersecting){
                if(realSrc){
                    el.src = realSrc 
                    el.removeAttribute('data-src')
                }
            }
        })
        io.observe(el)
    },

    //监听scroll事件
    listenerScroll(el){
        let handler = LazyLoadPlugin.throttle(LazyLoadPlugin.load,300)
        LazyLoadPlugin.load(el)
        window.addEventListener('scroll',()=>{
            handler(el)
        })

    },
    
    //加载真实图片
    load(el){
        let windowHeight = document.documentElement.clientHeight
        let elTop = el.getBoundingClientRect().top 
        let elBtm = el.getBoundingClientRect().bottom 
        let realSrc = el.dataset.src 
        if(elTop - windowHeight < 0 && elBtm > 0){
            if(realSrc){
                el.src = realSrc 
                el.removeAttribute('data-src')
            }
        }
    },
    //节流,时间戳写法
    throttle(fn,delay){
        let timer 
        let prevTime 
        return function(...args){
            let currTime = Date.now()
            let context = this 
            if(!prevTime){
                prevTime = currTime
            }
            clearTimeout(timer) 
            if(currTime - prevTime > delay){
                prevTime = currTime 
                fn.apply(context,args);
                clearTimeout(timer)
                return 
            }
            timer = setTimeout(()=>{
                prevTime = Date.now()
                timer = null 
                fn.apply(context,args)
            },delay)
        }
    }
}

插件注册

//第二个参数为options,并有default属性
app.use(LazyLoadPlugin,

{default:'https://img.zcool.cn/community/0196fa582abab6a84a0d304f899eaf.gif'})

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值