fi-ripple

0.1.8 • Public • Published

fi-ripple

Tiny (>4 KiB gzipped) no-dependencies ripple effect for plain js or vue.

Usage

Install with npm install fi-ripple.

You will also need to install dom4 if you want IE 10/11 support.

The ripple inherits the color from css. To change it, modify the color css property on the container.

With Vue

// dom4 is only needed for IE (10+) support – import it once
import 'dom4';
import Ripple from 'fi-ripple';

export default {
  directives: {
    Ripple,
  },
}

Now you can use the directive in your component template:

<button v-ripple>Click me</button>

With plain JS

// import the Ripple constructor
import { FiRipple } from 'fi-ripple';

const rippleContainer = document.getElementById('test');
// listen for clicks inside the given container
new FiRipple(rippleContainer);

Package Sidebar

Install

npm i fi-ripple

Weekly Downloads

3

Version

0.1.8

License

MIT

Unpacked Size

68.4 kB

Total Files

7

Last publish

Collaborators

  • fiws