Giter Site home page Giter Site logo

dungraymond / ripplet.js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from luncheon/ripplet.js

0.0 0.0 0.0 1.34 MB

Fully controllable vanilla-js material design ripple effect generator.

Home Page: https://luncheon.github.io/ripplet.js/demo/

License: Do What The F*ck You Want To Public License

JavaScript 15.88% TypeScript 55.73% HTML 28.39%

ripplet.js's Introduction

ripplet.js

BundlePhobia Types: included License: WTFPL

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

Demo

Installation

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

element.addEventListener('pointerdown', ripplet);

CDN (jsDelivr)

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

Download directly

Download ripplet.min.js

API

ripplet(targetSuchAsPointerEvent, 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

  • targetSuchAsPointerEvent: Object (required) (in most cases, pass the received PointerEvent 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 "currentColor" Ripplet color that can be interpreted by browsers. Specify null if the color or image of the ripple effect is based on the CSS className above.
If the special value "currentColor" is specified, the text color of the target element (getComputedStyle(currentTarget).color) is used.
opacity 0.1 Ripplet opacity between 0 and 1.
spreadingDuration ".4s" As its name suggests.
spreadingDelay "0s" As its name suggests.
spreadingTimingFunction "linear" As its name suggests. See https://developer.mozilla.org/docs/Web/CSS/transition-timing-function
clearing true Whether or not to clear automatically. If false is specified, the ripple effect should be cleared using ripplet.clear(currentTarget)
clearingDuration "1s" As its name suggests.
clearingDelay "0s" As its name suggests.
clearingTimingFunction "ease-in-out" As its name suggests. See https://developer.mozilla.org/docs/Web/CSS/transition-timing-function
centered false Whether to force the origin centered (and ignore clientX and clientY).
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)

ripplet.clear(currentTarget?, generatedContainerElement?) => void

Fade out and remove the ripplet. Use only when the option clearing is false.

Parameters

  • currentTarget: Element (optional)

The target element that was passed to ripplet(). If this parameter is not passed, all the ripplets are cleared.

  • generatedContainerElement: Element (optional)

The generated element that was returned by ripplet(). If this parameter is not passed, all the ripplets (of the currentTarget above) are cleared.

Example

<button
  onpointerdown="ripplet(arguments[0], { clearing: false })"
  onpointerup="ripplet.clear(this)"
  onpointerleave="ripplet.clear(this)"
>Keep pressing!</button>

ripplet.defaultOptions

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

import ripplet from 'ripplet';

ripplet.defaultOptions.color = 'rgb(64, 128, 255)';

Declarative Edition

If you don't need detailed control, you can use declarative edition that captures pointerdown 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.

In declarative edition, the ripple effect remains until the pointerup or pointerleave event occurs.

Example Usage

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

<button data-ripplet>Default</button>
<button data-ripplet="color: rgb(64, 192, 255); 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 = 'rgb(255, 128, 0)';

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

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.