91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue3圖片懶加載IntersectionObserver和useIntersectionObserver如何用

發布時間:2023-05-16 16:48:19 來源:億速云 閱讀:130 作者:iii 欄目:編程語言

這篇文章主要講解了“vue3圖片懶加載IntersectionObserver和useIntersectionObserver如何用”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“vue3圖片懶加載IntersectionObserver和useIntersectionObserver如何用”吧!

1、在src下創建helloworld.js 內容如下

// 隨便導入一張圖片作為加載出錯時的默認圖片
import defaultImg from '@/assets/logo.svg'

import {useIntersectionObserver} from "@vueuse/core"; //圖片加載失敗時候用的圖片
export default {
    install (app) {
        defineDirective(app)//自定義指令
    }
}

// 自定義指令
const defineDirective = (app) => {
    // 1.圖片懶加載指令v-lazyLoad
// 原理:先存儲圖片地址不能在src上,當圖片進入可視區,將你存儲圖片地址設置給圖片元素(dom)的src即可。
    app.directive('lazyLoad', {
        // vue2.0監聽使用指令的DOM是否創建好,鉤子函數: inserted
        // vue3.0 的指令擁有的鉤子函數和組件的一樣,使用指令的DON是否創建好,鉤子函數: mounted,onMounted是在組合API時候使用,現在是選項
        mounted (el, binding) { // 綁定的元素,綁定的值
            // // 2.創建一個觀察對象,來觀察當前使用指令得元素

            const observe = new IntersectionObserver(([{isIntersecting}]) => {
                if (isIntersecting) { // 如果進入了可視區
                    // 誰進入了可視區?得用observe去觀察 是哪個元素使用了該指令,所以會傳入dom對象el
                    // 停止觀察,因為觀察一次就夠了
                    observe.unobserve(el)
                    // console.log(binding.value, el) // binding.value就是綁定的地址
                    // 3.監聽圖片加載失敗,用默認圖
                    el.onerror = () => {
                        el.src = defaultImg
                    }
                    // 4.將指令v-lazyLoad上的地址設置給el的src屬性
                    el.src = binding.value
                }
            }, {
                threshold: 0//進入到可視區交界就開始觀察
            })
            observe.observe(el)// 使用observe上的observe方法觀察這個dom元素
        }
            // const { stop } = useIntersectionObserver(
            //     // 監聽目標元素
            //     el,
            //     ([{ isIntersecting }], observerElement) => {
            //         if (isIntersecting) {
            //             // 當圖片url無效加載失敗的時候使用默認圖片替代
            //             el.onerror = function () {
            //                 el.src = defaultImg
            //             }
            //             console.log('加載')
            //             el.src = binding.value
            //             stop()
            //         }
            //     })
            // }
    })
}

上邊的代碼中mounted下邊這個是一種方式,這種方式不借助插件即不用安裝任何東西

const observe = new IntersectionObserver(([{isIntersecting}]) => {
        if (isIntersecting) { // 如果進入了可視區
            // 誰進入了可視區?得用observe去觀察 是哪個元素使用了該指令,所以會傳入dom對象el
            // 停止觀察,因為觀察一次就夠了
            observe.unobserve(el)
            // console.log(binding.value, el) // binding.value就是綁定的地址
            // 3.監聽圖片加載失敗,用默認圖
            el.onerror = () => {
                el.src = defaultImg
            }
            // 4.將指令v-lazyLoad上的地址設置給el的src屬性
            el.src = binding.value
        }
    }, {
        threshold: 0//進入到可視區交界就開始觀察
    })
    observe.observe(el)// 使用observe上的observe方法觀察這個dom元素
}

mounted 下邊帶注釋的是另一種方式,這種方式需要安裝插件安裝過程點擊進入教程

// const { stop } = useIntersectionObserver(
//     // 監聽目標元素
//     el,
//     ([{ isIntersecting }], observerElement) => {
//         if (isIntersecting) {
//             // 當圖片url無效加載失敗的時候使用默認圖片替代
//             el.onerror = function () {
//                 el.src = defaultImg
//             }
//             console.log('加載')
//             el.src = binding.value
//             stop()
//         }
//     })
// }

2、在main.js中導入并使用

import { createApp } from 'vue'
import App from './App.vue'
import './assets/reset.css'
import Vant from 'vant'
import 'vant/lib/index.css';
// 導入自己UI組件庫
import UI from './helloworld'

// 插件的使用,在main.js使用app.use(插件)
createApp(App).use(Vant).use(UI).mount('#app')
// 具體就是導入這個
// import UI from './helloworld'
// 再use(UI)

3、再app.vue中使用如下:

<template>
  <div class="cs"></div>
  <ul >
    <li v-for="item in image_list" :key="item">
<!--      原本的寫法-->
      <!-- <img :src="item.picture"  alt=""> -->
<!--      // 使用圖片懶加載指令-->
      <img v-lazyLoad="item"  alt="">
    </li>
  </ul>
</template>
<script setup>
import {nextTick, onMounted, ref} from "vue";
const image_list = ref([
    'https://cache.yisu.com/upload/information/20230516/262/83726.jpg',
    'https://cache.yisu.com/upload/information/20230516/262/83727.jpg',
    'https://cache.yisu.com/upload/information/20230516/262/83728.jpg',
    'https://cache.yisu.com/upload/information/20230516/262/83729.jpg',
    'https://cache.yisu.com/upload/information/20230516/262/83730.jpg',
    'https://cache.yisu.com/upload/information/20230516/262/83731.jpg',
    'https://cache.yisu.com/upload/information/20230516/262/83732.jpg'
])
</script>

<style lang="less" scoped>
.cs{
  height: 1000px;
  background-color: pink;
}
.outer{
  img{
    display: inline-block;
    width: 500px;
  }
}
.inner{
  display: inline-block;
  width: 500px;
  height: 50px;
  background-color: deeppink;
}
</style>

感謝各位的閱讀,以上就是“vue3圖片懶加載IntersectionObserver和useIntersectionObserver如何用”的內容了,經過本文的學習后,相信大家對vue3圖片懶加載IntersectionObserver和useIntersectionObserver如何用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

芜湖县| 仁布县| 昌乐县| 乌兰浩特市| 繁昌县| 锡林浩特市| 麻阳| 仁布县| 南皮县| 五河县| 巴彦县| 赫章县| 根河市| 海安县| 栾川县| 丘北县| 阜康市| 泽州县| 沾化县| 三门峡市| 平塘县| 洛隆县| 阳朔县| 泊头市| 北京市| 皮山县| 贡嘎县| 滕州市| 拜泉县| 法库县| 西和县| 莒南县| 平遥县| 花垣县| 托克托县| 陆良县| 苏尼特右旗| 巍山| 施甸县| 虹口区| 荔浦县|