vue-tiny-lazyload-img

0.1.0 • Public • Published

🐌 vue-tiny-lazyload-img

A small size Vue.js directive for lazy loading images using IntersectionObserver API

License version downloads minified

Demo Page

https://mazipan.github.io/vue-tiny-lazyload-img/

Usage

Download

npm install vue-tiny-lazyload-img
// OR
yarn add intersection-observer

Install Plugin

import VueTinyLazyloadImg from 'vue-tiny-lazyload-img'
Vue.use(VueTinyLazyloadImg);

HTML Snippet

<img v-lazyload
  src="./assets/logo.png"
  data-src="./assets/logo-success.png"
  data-err="./assets/logo-error.png">

Please Use polyfill

This plugin using IntersectionObserver, so please use polyfill if you need support old browser https://github.com/w3c/IntersectionObserver/tree/master/polyfill

$ yarn add intersection-observer
 
// then add polyfill for IntersectionObserver in your main app
require('intersection-observer')

Build Setup

# install dependencies
npm install
 
# serve with hot reload at localhost:8080
npm run dev
 
# build for production demo with minification
npm run build:demo
 
# build for plugin distribution file
npm run build:lib

Credit

Based on this awesome article: https://developers.google.com/web/fundamentals/performance/lazy-loading-guidance/images-and-video/


Copyright © 2018 Built with ❤️ by Irfan Maulana

/vue-tiny-lazyload-img/

    Package Sidebar

    Install

    npm i vue-tiny-lazyload-img

    Weekly Downloads

    14

    Version

    0.1.0

    License

    MIT

    Unpacked Size

    19.4 kB

    Total Files

    9

    Last publish

    Collaborators

    • irfan.maulana