分享一个精简的vue.js 图片lazyload插件实例

前端之家收集整理的这篇文章主要介绍了分享一个精简的vue.js 图片lazyload插件实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

这个插件未压缩版本只有7.62kb,很精简,支持img标签和background-img资源的lazyload。支持vue.js 1.0 和vue.js 2.0

安转

使用方法

import Vue from 'vue'
// import VueLazyload
import VueLazyload from 'vue-lazyload'

//use custom directive
Vue.use(VueLazyload)

// use options
Vue.use(VueLazyload,{
preLoad: 1.3,error: 'dist/error.png',loading: 'dist/loading.gif',attempt: 1
})

new Vue({
el: 'body',})

这里可以定制所有加载中和加载失败加载成功的样式,

img[lazy=loading] { /*your style here*/ } img[lazy=error] { /*your style here*/ },img[lazy=loaded] { /*your style here*/ } /* or background-image */ .yourclass[lazy=loading] { /*your style here*/ } .yourclass[lazy=error] { /*your style here*/ },.yourclass[lazy=loaded] { /*your style here*/ }

API

Options

params

demo下载地址:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/vue/40747.html

猜你在找的Vue相关文章

type detail