All Projects → alexjoverm → V Lazy Image

alexjoverm / V Lazy Image

Licence: mit
Lazy load images using Intersection Observer, apply progressive rendering and css animations.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to V Lazy Image

Imager
Automated image compression for efficiently distributing images on the web.
Stars: ✭ 266 (-52.75%)
Mutual labels:  web-performance
Perfjankie
Checking browser rendering performance regression
Stars: ✭ 343 (-39.08%)
Mutual labels:  web-performance
Proxymanager
🎩✨🌈 OOP Proxy wrappers/utilities - generates and manages proxies of your objects
Stars: ✭ 4,556 (+709.24%)
Mutual labels:  lazy-loading
Accessible Image Lazy Load
😴 gandul! accessible lazy loading images
Stars: ✭ 281 (-50.09%)
Mutual labels:  lazy-loading
Vue Lazy Image Loading
Vue lazy image and background loading plugin.
Stars: ✭ 335 (-40.5%)
Mutual labels:  lazy-loading
React On Screen
Check if a react component in the viewport
Stars: ✭ 357 (-36.59%)
Mutual labels:  lazy-loading
egjs-imready
I'm Ready to check if the images or videos are loaded!
Stars: ✭ 41 (-92.72%)
Mutual labels:  lazy-loading
Angularwebpackvisualstudio
Template for ASP.NET Core, Angular with Webpack and Visual Studio
Stars: ✭ 497 (-11.72%)
Mutual labels:  lazy-loading
Loading Attribute Polyfill
Fast and lightweight dependency-free vanilla JavaScript polyfill for native lazy loading / the awesome loading='lazy'-attribute.
Stars: ✭ 335 (-40.5%)
Mutual labels:  lazy-loading
Prerender.js
Fast webpages for all browsers.
Stars: ✭ 411 (-27%)
Mutual labels:  web-performance
Skywalking
APM, Application Performance Monitoring System
Stars: ✭ 18,341 (+3157.73%)
Mutual labels:  web-performance
Hexo Theme Stun
🦄 An elegant theme for Hexo
Stars: ✭ 305 (-45.83%)
Mutual labels:  lazy-loading
React Cool Img
😎 🏞 A React <Img /> component let you handle image UX and performance as a Pro!
Stars: ✭ 356 (-36.77%)
Mutual labels:  lazy-loading
Imagvue
🎑 Imagvue is an image component for Vue.js
Stars: ✭ 268 (-52.4%)
Mutual labels:  lazy-loading
Garie
Open source web performance
Stars: ✭ 484 (-14.03%)
Mutual labels:  web-performance
Pwa Fundamentals
👨‍🏫 Mike & Steve's Progressive Web Fundamentals Course
Stars: ✭ 256 (-54.53%)
Mutual labels:  web-performance
Giraffeplayer2
out of the box android video player(support lazy load, ListView/RecyclerView and hight performance)
Stars: ✭ 344 (-38.9%)
Mutual labels:  lazy-loading
Guess Next
🔮 Demo application showing the integration of Guess.js with Next.js
Stars: ✭ 528 (-6.22%)
Mutual labels:  web-performance
Mozjpeg
Improved JPEG encoder.
Stars: ✭ 4,738 (+741.56%)
Mutual labels:  web-performance
Mam mol
$mol - fastest reactive micro-modular compact flexible lazy ui web framework.
Stars: ✭ 385 (-31.62%)
Mutual labels:  lazy-loading

v-lazy-image

npm npm Donate

A Vue.js component to lazy load an image automatically when it enters the viewport using the Intersection Observer API.

Do you know VueDose? It's where you can learn tips about the Vue.js ecosystem in a concise format, perfect for busy devs! 🦄

Demos

Usage

npm install v-lazy-image

Warning: You'll need to install the w3c Intersection Observer polyfill in case you're targeting a browser which doesn't support it.

You can register the component globally so it's available in all your apps:

import Vue from "vue";
import { VLazyImagePlugin } from "v-lazy-image";

Vue.use(VLazyImagePlugin);

Or use it locally in any of your components:

import VLazyImage from "v-lazy-image";

export default {
  components: {
    VLazyImage
  }
};

You must pass an src property with the link of the image:

<template>
  <v-lazy-image src="http://lorempixel.com/400/200/" />
</template>

That image will be loaded as soon as the image enters the viewport.

Progressive Loading

You can use the src-placeholder property to define an image that is shown until the src image is loaded.

When the src image is loaded, a v-lazy-image-loaded class is added, so you can use it to perform animations. For example, a blur effect:

<template>
  <v-lazy-image
    src="https://cdn-images-1.medium.com/max/1600/1*xjGrvQSXvj72W4zD6IWzfg.jpeg"
    src-placeholder="https://cdn-images-1.medium.com/max/80/1*xjGrvQSXvj72W4zD6IWzfg.jpeg"
  />
</template>

<style scoped>
.v-lazy-image {
  filter: blur(10px);
  transition: filter 0.7s;
}
.v-lazy-image-loaded {
  filter: blur(0);
}
</style>

In case you are using Webpack bundler for images too (just like Vue-cli):

<v-lazy-image
  src="https://cdn-images-1.medium.com/max/1600/1*xjGrvQSXvj72W4zD6IWzfg.jpeg"
  :src-placeholder="require('../assets/img.jpg')"
/>

You could listen to the intersect and load events for more complex animations and state handling:

<template>
  <v-lazy-image
    src="https://cdn-images-1.medium.com/max/1600/1*xjGrvQSXvj72W4zD6IWzfg.jpeg"
    src-placeholder="https://cdn-images-1.medium.com/max/80/1*xjGrvQSXvj72W4zD6IWzfg.jpeg"
    @intersect="..."
    @load="..."
  />
</template>

@jmperezperez has written about the progressive loading technique on his blog, in case you want a deeper explanation.

Responsive Images

Using the srcset property you can set images for different resolutions:

<template>
  <v-lazy-image
    srcset="image.jpg 1x, image_2x.jpg 2x"
  />
</template>

When using the srcset attribute is recommended to use also src as a fallback for browsers that don't support the srcset and sizes attributes:

<template>
  <v-lazy-image
    srcset="image-320w.jpg 320w, image-480w.jpg 480w"
    sizes="(max-width: 320px) 280px, 440px"
    src="image-480w.jpg"
  />
</template>

The srcset prop is combinable with src-placeholder in order to apply progressive loading.

Picture

If you want to wrap the img in a picture tag, use the prop usePicture. You can then use slots to add additional elements above the img element`.

<v-lazy-image
  srcset="image-320w.jpg 320w, image-480w.jpg 480w"
  alt="Fallback"
  use-picture
>
  <source srcset="image-320w.jpg 320w, image-480w.jpg 480w" />
</v-lazy-image>

Renders as:

<picture>
  <source srcset="image-320w.jpg 320w, image-480w.jpg 480w" />
  <img srcset="image-320w.jpg 320w, image-480w.jpg 480w" alt="Fallback" />
</picture>

Note you can use the picture polyfill.

API

Aside from the following API, you can pass any img attribute, such as alt, and they'll be added to the rendered <img> tag.

Fields marked as (*) are required.

Props

Name Type Default Description
src String (*) - Image src to lazy load when it intersects with the viewport
src-placeholder String ' ' If defined, it will be shown until the src image is loaded.
Useful for progressive image loading, see demo
srcset String - Images to be used for different resolutions
intersection-options Object () => ({}) The Intersection Observer options object.
use-picture Boolean false Wrap the img in a picture tag.

Events

Name Description
intersect Triggered when the image intersects the viewport
load Triggered when the lazy image defined in src is loaded
error Triggered when the lazy image defined in src fails to load
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].