1.3.6 β€’ Published 3 months ago

react-ripples-continued v1.3.6

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

React Ripples Continued is a React component library for creating ripples effects.

Contents

πŸ“– Documentation

πŸ’Ύ Installation

Run this npm command in the directory of your react application

npm i react-ripples-continued

πŸ˜ƒ Usage

This library includes two components: Ripples, and RippleSurface.

The Ripples component creates a ripple effect. Note that the parent container should have overflow: "hidden" and position: "relative" for proper functionality.

import { Ripples } from "react-ripples-continued";

export default function Button() {
  return (
    <button
      style={{ overflow: "hidden", position: "relative" /* other styles */ }}
    >
      react ripples πŸŽ‰
      <Ripples />
    </button>
  );
}

RippleSurface Component The RippleSurface component is a wrapper that simplifies implementing the ripple effect on various elements.

import { RippleSurface } from "react-ripples-continued";

export default function CustomComponent() {
  return (
    <RippleSurface
      tag="button"
      rippleProps={
        {
          /* Ripple props */
        }
      }
    >
      react ripples πŸŽ‰
    </RippleSurface>
  );
}

🏠 Props

Ripples Component

All props are optional

on

  • Type: "click" | "mouseDown" | "clickAndMouseDown" | "hover"
  • Default: "click"

Determines the event that triggers the ripple effect.

color

  • Type: string
  • Default: "white"

Sets the color of the ripple effect.

opacity

  • Type: number
  • Default: 1

Sets the opacity of the ripple effect. Accepts values between 0 (completely transparent) and 1 (completely opaque).

blur

  • Type: number
  • Default: 0

Sets the blur amount for the ripple effect. The value is in rem units.

duration

  • Type: number
  • Default: 500

Determines the duration of the ripple animation in milliseconds.

fillAndHold

  • Type: boolean
  • Default: false

When set to true, the ripple effect will fill the container and hold its position until a mouse up event occurs.

optimize

  • Type: boolean
  • Default: false

When set to true, the ripple elements will be removed from the DOM after the animation completes. This can be useful for performance optimization in scenarios with frequent ripple triggers, but it's set to false by default, since it can introduce some wierd behaviour.

rippleElement

  • Type: React.ReactNode
  • Default: undefined

When handed JSX it will display that JSX inside the ripple. Keep in mind that you probably want to lower the opacticy of the color prop or set color="" if you use rippleElement

The rippleElement prop can be used to do create some pretty cool stuff!

zIndex

  • Type: number
  • Default: undefined

RippleSurface Component

All props are optional

tag

  • Type: React.ReactNode
  • Default: HtmlTagName

children

  • Type: React.ReactNode
  • Default: ReactNode

disableDefaultStyling

  • Type: boolean
  • Default: false

When set to true, default styling (overflow and position) is not applied.

rippleFromBehind

  • Type: boolean
  • Default: false

When set to true, the ripple effect appears behind the content. Note: this will also wrap the "children" in a div

forwardedRef

  • Type: boolean
  • Default: any

Will forward the red

onClick, onSubmit, onInput

Event handlers

rippleProps

  • Type: RipplesInterface

Props to be passed to the Ripples component.

πŸ› οΈ Internal Workings

addRipple

This internal function is responsible for creating and animating the ripple effect based on the provided parameters.

This function is not react specific (except ReactDOM.createRoot for prasing JSX/createElement calls to js DOM operations), so it could quite easily be adpated for use with solid, vue, svelte, angular, or any other framework.

πŸ–₯️ Server Side Rendering

This library was built for server side use in mind, primarily for next. Both of the components are tagged with "use clients" to ensure it works.

πŸ‘ How to contribute

All types of contributions are welcome! Feel free to open issues, or pull requests or whatever you feel like.

πŸ“„ License

This library is MIT licensed.

1.3.6

3 months ago

1.3.5

3 months ago

1.3.4

3 months ago

1.3.3

4 months ago

1.3.2

5 months ago

1.3.1

5 months ago

1.3.0

5 months ago

1.2.0

7 months ago

1.1.10

7 months ago

1.1.9

7 months ago

1.1.8

7 months ago

1.1.7

7 months ago

1.1.6

7 months ago

1.1.5

7 months ago

1.1.4

7 months ago

1.1.3

7 months ago

1.1.2

7 months ago

1.1.1

7 months ago

1.1.0

7 months ago

1.0.4

7 months ago

1.0.3

7 months ago

1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago