8000 GitHub - alexdrimbe/material-ui-image: Material style image with loading animation
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

alexdrimbe/material-ui-image

 
 

Repository files navigation

Material UI Image

JavaScript Style Guide Build Status Greenkeeper badge

Images are ugly until they're loaded. Materialize it with material image! It will fade in like the material image loading pattern suggests.

Example

Installation

Stable channel

npm install material-ui-image

Pre-release channel

npm install material-ui-image@next

Please note that @next will only point to pre-releases; to get the latest stable release use @latest instead.

Usage

Use this component just like a regular img tag.

import Image from 'material-ui-image'

// ...

render() {
  return (
    <div>
      <Image
        src="http://loremflickr.com/300/200"
      />
    </div>
  )
}

Material UI Image Properties

Name Type Default Description
src* string Specifies the URL of an image.
aspectRatio float (1/1) Specifies the aspect ratio of the image.
color string white Override the background color.
disableError bool false Disables the error icon if set to true.
disableSpinner bool false Disables the loading spinner if set to true.
disableTransition bool false Disables the transition if set to true.
errorIcon node Override the error icon.
imageStyle object { width: 'inherit', height: 'inherit' } Override the inline-styles of the image.
loading node Override the loading component.
onClick func Fired when the user clicks on the image happened.
style object Override the inline-styles of the root element.

* required property

License

The files included in this repository are licensed under the MIT license.

About

Material style image with loading animation

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%
0