Coder Social home page Coder Social logo

axetroy / lazy-image Goto Github PK

View Code? Open in Web Editor NEW
1.0 2.0 0.0 378 KB

Lazy image component for Vue.js & React.js

Home Page: https://axetroy.github.io/lazy-image

License: MIT License

JavaScript 21.90% HTML 5.44% CSS 2.39% TypeScript 43.92% Vue 26.35%

lazy-image's Introduction

Build Status License Prettier Node npm version Size

Lazy image component for Vue & React

Online Demo

Installation

npm install @axetroy/lazy-image

Usage

Using with Vue

<template>
  <lazy-image style="max-width: 100%;" src="https://example.com/img.png" />
</template>

<script>
import LazyImage from "@axetroy/lazy-image/vue";

export default {
  components: {
    "lazy-image": LazyImage
  }
};
</script>

Vue Props

Prop Description Defaults
src Image src url undefined

Vue Events

Prop Description
@enter trigger when enter into viewport
@leave trigger when leave viewport

Using in React

import React from "react";
import LazyImage from "@axetroy/lazy-image/react";

class App extends React.Component {
  render() {
    return (
      <LazyImage
        style={{ maxWidth: "100%" }}
        src={"https://example.com/img.png"}
      />
    );
  }
}

React Props

Prop Description Defaults
src Image src url undefined
onEnter() trigger when enter into viewport undefined
onLeave() trigger when leave viewport undefined

Browsers support

IE / Edge
IE / Edge
Firefox
Firefox
Chrome
Chrome
Safari
Safari
IE9, IE10, IE11, Edge last 2 versions last 2 versions last 2 versions

IE11 require polyfill Object.assign()

IE10 require polyfill new Set() and new Map()

License

The MIT License

lazy-image's People

Contributors

renovate[bot] avatar renovate-bot avatar axetroy avatar

Stargazers

Tetsu avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.