vue 图片懒加载

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
  <title>Document</title>
</head>
<body>
  <div id="app">
    <div ref='imgs'>
      <img style="width: 50%;" class="imgs" v-for="(item,index) in datas" :key="index" :src="item.src" alt="" :data-src="item.dataSrc">
    </div>
  </div>
</body>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
  <!-- import JavaScript -->
  <script src="https://unpkg.com/element-ui/lib/index.js"></script>
  <script>
    datas = [
      {
        src: 'http://www.17qq.com/img_qqtouxiang/79911930.jpeg',
        dataSrc: 'https://ali.image.hellorf.com/images/d4433b800f3f1c2ece929876c8230df6.jpeg'
      },
      {
        src: 'http://www.17qq.com/img_qqtouxiang/79911930.jpeg',
        dataSrc: 'https://ali.image.hellorf.com/images/4eaef1d8851e03c3c4fe0bbb88aa01e8.jpeg'
      },
      {
        src: 'http://www.17qq.com/img_qqtouxiang/79911930.jpeg',
        dataSrc: 'https://ali.image.hellorf.com/images/c65d2cb5cffc0007acf8934f30ff6da2.jpeg'
      },
      {
        src: 'http://www.17qq.com/img_qqtouxiang/79911930.jpeg',
        dataSrc: 'https://ali.image.hellorf.com/images/0c9f7aa0f7d5129525d7badfa19e7dbf.jpeg'
      },
      {
        src: 'http://www.17qq.com/img_qqtouxiang/79911930.jpeg',
        dataSrc: 'https://ali.image.hellorf.com/images/5c0ff69f2a295a4dfb0f4edc03431ab2.jpeg'
      },
      {
        src: 'http://www.17qq.com/img_qqtouxiang/79911930.jpeg',
        dataSrc: 'https://ali.image.hellorf.com/images/a82ac2c7b73cc6eff672e3932dc36eb5.jpeg'
      },
      {
        src: 'http://www.17qq.com/img_qqtouxiang/79911930.jpeg',
        dataSrc: 'https://ali.image.hellorf.com/images/510bf0cff7987f7fd5edee3592115b4a.jpeg'
      },
      {
        src: 'http://www.17qq.com/img_qqtouxiang/79911930.jpeg',
        dataSrc: 'https://ali.image.hellorf.com/images/510bf0cff7987f7fd5edee3592115b4a.jpeg'
      },
      {
        src: 'http://www.17qq.com/img_qqtouxiang/79911930.jpeg',
        dataSrc: 'https://ali.image.hellorf.com/images/510bf0cff7987f7fd5edee3592115b4a.jpeg'
      },
      {
        src: 'http://www.17qq.com/img_qqtouxiang/79911930.jpeg',
        dataSrc: 'https://ali.image.hellorf.com/images/ae83259c505a4bce741023517b9af921.jpeg'
      },{
        src: 'http://www.17qq.com/img_qqtouxiang/79911930.jpeg',
        dataSrc: 'https://ali.image.hellorf.com/images/ae83259c505a4bce741023517b9af921.jpeg'
      },
      {
        src: 'http://www.17qq.com/img_qqtouxiang/79911930.jpeg',
        dataSrc: 'https://ali.image.hellorf.com/images/ae83259c505a4bce741023517b9af921.jpeg'
      },
      {
        src: 'http://www.17qq.com/img_qqtouxiang/79911930.jpeg',
        dataSrc: 'https://ali.image.hellorf.com/images/ae83259c505a4bce741023517b9af921.jpeg'
      },
      {
        src: 'http://www.17qq.com/img_qqtouxiang/79911930.jpeg',
        dataSrc: 'https://ali.image.hellorf.com/images/a82ac2c7b73cc6eff672e3932dc36eb5.jpeg'
      },
      {
        src: 'http://www.17qq.com/img_qqtouxiang/79911930.jpeg',
        dataSrc: 'https://ali.image.hellorf.com/images/a82ac2c7b73cc6eff672e3932dc36eb5.jpeg'
      },
      {
        src: 'http://www.17qq.com/img_qqtouxiang/79911930.jpeg',
        dataSrc: 'https://ali.image.hellorf.com/images/a82ac2c7b73cc6eff672e3932dc36eb5.jpeg'
      }
    ]
    new Vue({
      el: '#app',
      data: function() {
        return { 
          datas
        }
      },
      mounted() {
        window.addEventListener('scroll', this.scrollHandle);  // 绑定页面的滚动事件
        this.show()
      },
      methods: {
        scrollHandle() {
          const imgs = document.querySelectorAll('.imgs')
          const scrollTop = document.body.scrollTop  || document.documentElement.scrollTop
          const height = window.innerHeight
          imgs.forEach(img=>{
            const imgTop = img.getBoundingClientRect().top
            if(imgTop <= height) {
              setTimeout( ()=>{
                img.setAttribute('src',img.getAttribute('data-src'))
              },2000)
            }
          })
        },
        show() {
          this.$refs.imgs.scrollTop = 10
        }
      },
    })
  </script>
</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值