@axetroy/react-img-lazy-load

0.2.0 • Public • Published

react-img-lazy-load

Greenkeeper badge

Image lazy load component for react

Install

yarn add @axetroy/react-img-lazy-load

Usage

import React, { Component } from 'react';
import { render } from 'react-dom';
import LazyImage from '@axetroy/react-img-lazy-load';

class App extends Component {
  state = {};
  componentDidMount() {
    this.setState({
      src: 'https://avatars1.githubusercontent.com/u/9758711?v=3'
    });
    setTimeout(() => {
      this.setState({
        src: 'https://webpack.js.org/cd0bb358c45b584743d8ce4991777c42.svg'
      });
    }, 5000);
  }
  render() {
    const { src } = this.state;
    return (
      <div>
        <LazyImage
          src={src}
          width="200"
          height="300"
          onEnter={component => {
            console.log('enter viewport', component);
          }}
          onLeave={component => {
            console.info('leave viewport', component);
          }}
        />
        <div style={{ height: '2000px', backgroundColor: '#e3e3e3' }}>
          hello world
        </div>
        <LazyImage src={src} />
      </div>
    );
  }
}

const element = document.createElement('div');
document.body.appendChild(element);
render(<App />, element);

Props

  • src: string

  • onEnter: function

  • onLeave: function

  • and other props of img tag

Run the Demo

git clone https://github.com/axetroy/react-img-lazy-load.git
yarn
yarn start

License

The MIT License

Package Sidebar

Install

npm i @axetroy/react-img-lazy-load

Weekly Downloads

3

Version

0.2.0

License

MIT

Last publish

Collaborators

  • axetroy