浅谈vue中使用图片懒加载vue-lazyload插件详细指南
程序员文章站
2022-04-09 21:49:08
在vue中使用图片懒加载详细指南,分享给大家。具体如下:
说明
当网络请求比较慢的时候,提前给这张图片添加一个像素比较低的占位图片,不至于堆叠在一块,或显示大片空白...
在vue中使用图片懒加载详细指南,分享给大家。具体如下:
说明
当网络请求比较慢的时候,提前给这张图片添加一个像素比较低的占位图片,不至于堆叠在一块,或显示大片空白,让用户体验更好一点。
使用方式
使用vue的 vue-lazyload 插件
插件地址:
案例
demo:
installation 安装方式
npm
$ npm i vue-lazyload -d
cdn
cdn:
<script src="https://unpkg.com/vue-lazyload/vue-lazyload.js"></script> <script> vue.use(vuelazyload) ... </script>
用法
main.js 在入口文件
import vue from 'vue' import app from './app.vue' import vuelazyload from 'vue-lazyload' //引入这个懒加载插件 vue.use(vuelazyload) // 或者添加vuelazyload 选项 vue.use(vuelazyload, { preload: 1.3, error: 'dist/error.png', loading: 'dist/loading.gif', attempt: 1 }) new vue({ el: 'body', components: { app } })
在入口文件添加后,在组件任何地方都可以直接使用把 img 里的:src -> v-lazy
<div class="pic"> <a href="#" rel="external nofollow" rel="external nofollow" ><img :src="'/static/img/' + item.productimage" alt=""></a> </div>
把之前项目中img 标签里面的 :src 属性 改成 v-lazy
<div class="pic"> <a href="#" rel="external nofollow" rel="external nofollow" ><img v-lazy="'/static/img/' + item.productimage" alt=""></a> </div>
参数选项说明
key | description | default | options |
---|---|---|---|
preload | proportion of pre-loading height | 1.3 | number |
error | 当加载图片失败的时候 | 'data-src' | string |
loading | 当加载图片成功的时候 | 'data-src' | string |
attempt | 尝试计数 | 3 | number |
listenevents | 想要监听的事件 | ['scroll', 'wheel', 'mousewheel', 'resize', 'animationend', 'transitionend', 'touchmove'] | desired listen events |
adapter | 动态修改元素属性 | { } | element adapter |
filter | 图片监听或过滤器 | { } | image listener filter |
lazycomponent | lazyload component | false | lazy component |
dispatchevent | 触发dom事件 | false | boolean |
throttlewait | throttle wait | 200 | number |
observer | use intersectionobserver | false | boolean |
observeroptions | intersectionobserver options | { rootmargin: '0px', threshold: 0.1 } | intersectionobserver |
想要监听的事件
您可以通过传递数组来配置想要使用vue - lazyload的事件
监听器的名字。
vue.use(vuelazyload, { preload: 1.3, error: 'dist/error.png', loading: 'dist/loading.gif', attempt: 1, // the default is ['scroll', 'wheel', 'mousewheel', 'resize', 'animationend', 'transitionend'] listenevents: [ 'scroll' ] })
如果您遇到这个插件重新设置加载的麻烦,这是很有用的
当你有某些动画和过渡的时候。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。