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
This repository was archived by the owner on Aug 19, 2022. It is now read-only.

React component for progressive image loading

NotificationsYou must be signed in to change notification settings

FormidableLabs/react-progressive-image

Repository files navigation

Maintenance Status

react-progressive-image React component for progressive image loading

Install

$ yarn add react-progressive-image

The UMD build is also available onunpkg:

<scriptsrc="https://unpkg.com/react-progressive-image@0.1.0/umd/react-progressive-image.min.js"></script>

If you use the UMD build you can find the library onwindow.ReactProgressiveImage.

Examples

Simple

<ProgressiveImagesrc="large-image.jpg"placeholder="tiny-image.jpg">{src=><imgsrc={src}alt="an image"/>}</ProgressiveImage>

With Delay

<ProgressiveImagedelay={3000}src="large-image.jpg"placeholder="tiny-image.jpg">{src=><imgsrc={src}alt="an image"/>}</ProgressiveImage>

With loading argument

<ProgressiveImagesrc="large-image.jpg"placeholder="tiny-image.jpg">{(src,loading)=>(<imgstyle={{opacity:loading ?0.5 :1}}src={src}alt="an image"/>)}</ProgressiveImage>

With srcSet

<ProgressiveImagesrc="medium.jpg"srcSetData={{srcSet:'small.jpg 320w, medium.jpg 700w, large.jpg 2000w',sizes:'(max-width: 2000px) 100vw, 2000px'}}placeholder="tiny-image.jpg">{(src,_loading,srcSetData)=>(<imgsrc={src}srcSet={srcSetData.srcSet}sizes={srcSetData.sizes}alt="an image"/>)}</ProgressiveImage>

Component As Placeholder

If you want to use a component, such as a loading spinner, as a placeholder, you can make use of theloading argument in the render callback. It will be true while the main image is loading and false once it has fully loaded. Keep in mind that theplaceholder props isrequired, so you will need to explicitly declare an empty string as it's value if you plan on using a component in the render callback.

constdominantImageColor='#86356B';constplaceholder=(<divstyle={{backgroundColor:dominantImageColor,height:300,width:500}}/>);<ProgressiveImagesrc="large-image.jpg"placeholder="">{(src,loading)=>{returnloading ?placeholder :<imgsrc={src}alt="an image"/>;}}</ProgressiveImage>;

Progressive Enhancement and No JavaScript

Since this component relies on JavaScript to replace the placeholder src with the full image src, you should use a fallback image if your application supports environments that do not have JavaScript enabled or is progressively enhanced.

You can do this by adding the fallback image inside of a<noscript> tag in the render callback you provide as theProgressiveImage component's child.

<ProgressiveImagesrc="large-image.jpg"placeholder="tiny-image.jpg">{src=>{return(<div><imgclassName="progressive-image"src={src}/><noscript><imgclassName="progressive-image no-script"src="large-image.jpg"/></noscript></div>);}}</ProgressiveImage>

Props

NameTypeRequiredDescription
childrenfunctiontruereturnssrc,loading, andsrcSetData
delaynumberfalsetime in milliseconds before src image is loaded
onErrorfunctionfalsereturns error event
placeholderstringtruethe src of the placeholder image
srcstringtruethe src of the main image
srcSetData{srcSet: "string", sizes: "string" }falsesrcset and sizes to be applied to the image

Maintenance Status

Archived: This project is no longer maintained by Formidable. We are no longer responding to issues or pull requests unless they relate to security concerns. We encourage interested developers to fork this project and make it their own!

About

React component for progressive image loading

Resources

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Contributors12


[8]ページ先頭

©2009-2025 Movatter.jp