Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

react-intersectionObserver-lazy-load is a lazy-load component which helps you load your components(or other contents) when these components enter into viewport(or target viewport).

License

NotificationsYou must be signed in to change notification settings

promise-coding/react-intersectionObserver-lazy-load

Repository files navigation

React Intersection Observer Lazy Load

NPMnpm

react-intersection-observer-lazy-load

react-intersection-observer-lazy-load is a lazy-load component which helps you load your components(or other contents) when these components enter into viewport(or target viewport).

React Intersection Observer Lazy Load Demo

react-intersection-observer-lazy-load bases on Intersection Observer API

Quoted fromMDN:The IntersectionObserver interface of the Intersection Observer API provides a way to asynchronously observe changes in the intersection of a target element with an ancestor element or with a top-level document's viewport. The ancestor element or viewport is referred to as the root.

Installation

npm install react-intersection-observer-lazy-load

Examples

basic demo

Usage

importReactfrom'react'import{render}from'react-dom'importLazyLoadComponentfrom'react-intersection-observer-lazy-load'importTestComponentfrom'./TestComponent';constApp=()=>{return(<LazyLoadComponent><TestComponent/></LazyLoadComponent>);};render(<App/>,document.getElementById('root'));

Props

1、options

Type:Object Default:{root: null, rootMargin: '0px 0px 0px 0px',threshold: []}options config is same asIntersectionObserver:

root

A specific ancestor of the target element being observed. If no value was passed to the constructor or this is null, the top-level document's viewport is used.

rootMargin

An offset rectangle applied to the root's bounding box when calculating intersections, effectively shrinking or growing the root for calculation purposes. The value returned by this property may not be the same as the one specified when calling the constructor as it may be changed to match internal requirements. Each offset can be expressed in pixels (px) or as a percentage (%). The default is "0px 0px 0px 0px".

thresholds

A list of thresholds, sorted in increasing numeric order, where each threshold is a ratio of intersection area to bounding box area of an observed target. Notifications for a target are generated when any of the thresholds are crossed for that target. If no value was passed to the constructor, 0 is used.

2、defaultPlaceholderStyle

Type:Object Default:{width:300, height:300}a default placeholder is presenting when a component is not loaded, thedefaultPlaceholderStyle config is setting to defaultplaceholder, defaultwidth is 300px andheight is 300px;

3、placeholder

Type:Element Default:nullreact-intersectionObserver-lazy-load` provides a default placeholder, and you could set your own placeholder.

4、onchange

Type:function Default:nullCall this function whenever the in view state changes. It will receive the component self ref, alongside the current IntersectionObserverEntry.

About

react-intersectionObserver-lazy-load is a lazy-load component which helps you load your components(or other contents) when these components enter into viewport(or target viewport).

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp