react-load-lazily

1.0.1 • Public • Published

Welcome to react-load-lazily 🦥

Version Documentation

React-load-lazily is a Tiny library that allows you to load any component or HTML element only when the user scrolls to its position on the viewport.

  • Uses IntersectionObserver API natively present in the browser.
  • 📦 Lightweight ~ 1.5KB minified & gzipped (7xxKb)
  • 🚀 Easy to use

Installation

npm install react-load-lazily --save
yarn add react-load-lazily

How to use

import LazyLoad from 'react-load-lazily'

Passing component as children

<LazyLoad>
  <MyComponent>
</LazyLoad>

Passing component as props

<LazyLoad component={<MyComponent>}/>

Threshold

Default: 0.1

The threshold property can be used to specify the percentage of the element that must be visible before it is loaded, with the default threshold set at 0.1 (or 10%).

threshold={0.5} Load the component when 50% of it is visible.

threshold={1} Load the component when 100% of it is visible

Note
When the height and width properties are not specified, the default is set to none, meaning that the component will be loaded as soon as even one pixel of the element is visible on the viewport.

<LazyLoad threshold={0.5} height="500px" width="100vw">
  <MyComponent>
</LazyLoad>

Choose your own way of styling

<LazyLoad threshold={0.5}  styles={{ height:'100px' , width:'500px' }} className="h-12 w-full" id="myComponent">
  <MyComponent>
</LazyLoad>

Run custom logic

Use onVisible prop to run custom logic when component is visible.

<LazyLoad onVisible={()=> {
   window.alert('visible')
   }}
>
  <MyComponent>
</LazyLoad>

What else

Pass your own props

<LazyLoad onClick={...} onHover={...}>
  <MyComponent>
</LazyLoad>

Author

👤 Hamsaraj

Show your support

Give a ⭐️ if this project helped you!


Package Sidebar

Install

npm i react-load-lazily

Weekly Downloads

19

Version

1.0.1

License

MIT

Unpacked Size

13.8 kB

Total Files

6

Last publish

Collaborators

  • hamsaraj