2.11.0 • Published 2 years ago

@s-ui/react-image-placeholder v2.11.0

Weekly downloads
74
License
MIT
Repository
-
Last release
2 years ago

ImagePlaceholder

Shows a placeholder while loading an image. You can also set a fallback to be loaded in case it fails loading the image.

Installation

$ npm install @s-ui/react-image-placeholder --save

Usage

Basic usage

import ImagePlaceholder from '@s-ui/react-image-placeholder'

return (
  <ImagePlaceholder
    src='https://satyr.io/1000'
    alt='1000x1000'
    placeholder={
      src: '...',
      alt: '...'
      ...imageTagAttributes
    }
    fallback={
      src: '...',
      alt: '...'
      ...imageTagAttributes
    }
  />
)

Find full description and more examples in the demo page.