paint-selection
v1.1.2
Published
A utility function for adding material design ripple effect
Downloads
3
Maintainers
Readme
Paint Selection
A simple utility function for adding creating a material design ripple effect
Features
paintSelection
Type Function
Adds a material design ripple effect to currentTarget of an event
Parameters
- e - Type
Event
, RequiredTrue
- The click event for the element to be painted. - config - Type
Object
, RequiredFalse
- Configuration settings for the ripple. - config.color - Type
String
, RequiredFalse
- The color to paint the element. Defaults to#A239CA
. - config.duration - Type
Float
, RequiredFalse
- The duration of the ripple animation. Defaults to0.3
.
CSS classes used by Paint Selection
- ps-ink
- ps-ink-animate
- s-ink-ripple (keyframes)
Example usage in React
import React from 'react';
import paintSelection from 'paint-selection';
export default class Foo extends React.Component {
onClick(e) {
paintSelection(e, {
color: '#4717F6',
duration: .25
});
// handle click event
}
render() {
return (
<div className="btn"
role="button"
onClick={e => this.onClick(e)}>
<a>foo</a>
</div>
);
}
}
Note: It is recommended that the button content is wrapped in an anchor tag. This prevents the ripple effect from appearing overtop of the button text.
Example sass for containing the ripple within the button
div.btn {
position: relative;
overflow: hidden;
a {
position: relative;
overflow: hidden;
}
}