Giter VIP home page Giter VIP logo

ripplet.js's Introduction

ripplet.js

Fully controllable vanilla-js material design ripple effect generator.
This can be used with any JavaScript framework and/or any CSS framework.

Demo

Installation

via npm

$ npm install ripplet.js
import ripplet from 'ripplet.js';

element.addEventListener('mousedown', ripplet);

via CDN

<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<button onmousedown="ripplet(arguments[0])">Click me!</button>

Download directly

Download ripplet.min.js

API

ripplet(targetSuchAsMouseEvent[, options]) => HTMLElement

Generate a ripplet immediately.
In particular, create two elements (one is a circular enlarging element representing ripplet, and the other is a container element to restrict visible area) and remove them when the animation ends. Do nothing else.

Parameters

  • targetSuchAsMouseEvent: Object (required) (in most cases, pass the received MouseEvent object)
Property name Description
currentTarget Target element
clientX Client x-coordinate of center of ripplet
clientY Client y-coordinate of center of ripplet
  • options: Object (optional)
Property name Default Description
className "" Class name to be set for the ripplet element (not for this library to use, but for user to style that element)
color "rgba(0, 0, 0, .1)" Ripplet color (specify null if the color or image of the ripple effect is based on the CSS className above)
opacity null Ripplet opacity (used when alpha channel of color property above is shared and difficult to change)
spreadingDuration ".4s" As its name suggests
spreadingDelay "0s" As its name suggests
spreadingTimingFunction "linear" As its name suggests
clearingDuration "1s" As its name suggests
clearingDelay "0s" As its name suggests
clearingTimingFunction "ease-in-out" As its name suggests
centered false Force the origin centered (clientX and clientY of the first argument are ignored)
appendTo "body" Either "body" or "parent". Consider specifying "parent" if there are scrollable ancestors or position: fixed ancestors.
If the parent treats children as special (e.g. the parent is a flexbox on IE), specifying "parent" may cause the ripplet to be placed incorrectly.

Return value

Generated container element (having one child element representing ripplet)

defaultOptions

You can change the default ripplet options for your app.
For example:

import { defaultOptions } from 'ripplet';

defaultOptions.color = 'rgba(64, 128, 255, .2)';

or

<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script>
  ripplet.defaultOptions.color = 'rgba(64, 128, 255, .2)';
</script>

Declarative Edition

If you don't need detailed control, you can use declarative edition that captures mousedown events.
Load "ripplet-declarative.js" and add data-ripplet attribute to html elements with/without options.
Elements dynamically appended also have the ripple effect if data-ripplet attribute is available.

Example Usage

<script src="https://cdn.jsdelivr.net/npm/[email protected]/umd/ripplet-declarative.min.js"></script>
<!-- <script>ripplet.defaultOptions.color = 'rgba(0, 255, 0, .2)';</script> -->

<button data-ripplet>Default</button>
<button data-ripplet="color: rgba(64, 192, 255, .2); spreading-duration: 2s; clearing-delay: 1.8s;">Sky Blue Slow</button>

or

import 'ripplet.js/es/ripplet-declarative';
// require(ripplet.js/umd/ripplet-declarative.min');

// import { defaultOptions } from 'ripplet.js/es/ripplet-declarative';
// defaultOptions.color = 'rgba(255, 128, 0, .2)';

or

Download ripplet-declarative.min.js

Tips

I recommend applying following styles to the ripple target elements:

  1. Erase tap highlight effect for iOS
  2. Disable tap-to-hover behavior and double-tap-to-zoom behavior for iOS
/* Example for the declarative edition */
[data-ripplet] {
  -webkit-tap-highlight-color: transparent; /* 1 */
  touch-action: manipulation; /* 2 */
}

License

WTFPL

ripplet.js's People

Contributors

luncheon avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.