Skip to content

A React component for adding material design style ink

solomonhawk/react-ink

 
 

Repository files navigation

NPM


Build Status


Add the Material Design ripple effect to React component.

Ink Gif

Usage

Ink must be placed within another component with a position is not static:

var React = require('react');
var Ink = require('react-ink');

module.exports = React.createClass({
  render() {
    return (
      <button style={{ position: "relative" }}>
        <Ink />
      </button>
    );
  }
});

There are several options available for how <Ink /> renders, see the getDefaultProps() declaration, however descriptions follow:

Configuration

{
  background : true,  // When true, pressing the ink will cause the background to fill with the current color
  duration   : 1000,  // Duration of the full animation completion
  opacity    : 0.25,  // The opacity of the ink blob
  radius     : 150,   // The size of the effect, will not exceed bounds of containing element
  recenter   : true,  // When true, recenter will pull ink towards the center of the containing element
  style      : {...}  // See src/style.js. Any rules set here will extend these values
}

About

A React component for adding material design style ink

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 93.6%
  • HTML 6.4%