@rocket2mars/react-ripple-effect
v1.3.0
Published
A lightweight, zero-dependency ripple effect library for React. No wrapper components needed - just add data attributes!
Maintainers
Readme
@rocket2mars/react-ripple-effect
A lightweight, zero-dependency ripple effect library for React. No wrapper components needed - just add data attributes!
Features
- No wrapper components - Use regular
<button>elements with data attributes - Zero dependencies - Pure TypeScript implementation
- Highly customizable - Control color, duration, radius, and position via data attributes
- Lightweight - Minimal bundle size
- TypeScript support - Full type definitions included
- Touch-friendly - Works with both mouse and touch events
Installation
npm install @rocket2mars/react-ripple-effectQuick Start
Option 1: Using the React Hook (Recommended)
import { useRippleEffect } from "@rocket2mars/react-ripple-effect";
import "@rocket2mars/react-ripple-effect/dist/styles.css";
function App() {
useRippleEffect();
return (
<button
className="ripple-host"
data-ripple-color="rgba(255,255,255,0.3)"
data-ripple-duration="0.45"
data-ripple-max-radius="160"
>
Click me
</button>
);
}Option 2: Manual Initialization
import { useEffect } from "react";
import { initRippleEffect } from "@rocket2mars/react-ripple-effect";
import "@rocket2mars/react-ripple-effect/dist/styles.css";
function App() {
useEffect(() => {
initRippleEffect();
}, []);
return (
<button className="ripple-host" data-ripple-color="rgba(255,255,255,0.3)">
Click me
</button>
);
}Usage
Basic Usage
Add the ripple-host class to any element you want to have ripple effects:
<button className="ripple-host">Click me</button>Customization
Use data attributes to customize the ripple effect:
| Attribute | Description | Default |
| ------------------------ | ------------------------------------------------ | ------------------ |
| data-ripple-color | Ripple color (CSS color value) | rgba(0,0,0,0.15) |
| data-ripple-duration | Animation duration in seconds | 0.4 |
| data-ripple-max-radius | Maximum ripple radius in pixels | 2000 |
| data-ripple-center | Center the ripple effect ("true" or "false") | "false" |
Examples
Custom Color and Duration
<button
className="ripple-host"
data-ripple-color="rgba(255,255,255,0.5)"
data-ripple-duration="0.6"
>
Custom Ripple
</button>Centered Ripple
<button
className="ripple-host"
data-ripple-center="true"
data-ripple-color="rgba(0,0,0,0.2)"
>
Centered Ripple
</button>Maximum Radius
<button
className="ripple-host"
data-ripple-max-radius="100"
data-ripple-color="rgba(255,0,0,0.3)"
>
Limited Radius
</button>Without ripple-host Class
You can also use just the data-ripple-color attribute:
<button data-ripple-color="rgba(255,255,255,0.3)">Works without class</button>Styling
The package includes default styles, but you can override CSS variables:
:root {
--ripple-color: rgba(0, 0, 0, 0.15);
--ripple-duration: 0.4s;
}You can also customize the .ripple-host class to match your design:
.ripple-host {
/* Your custom styles */
background: #your-color;
border-radius: 8px;
padding: 10px 20px;
}API Reference
initRippleEffect()
Manually initialize ripple effects on all matching elements in the document.
import { initRippleEffect } from "@rocket2mars/react-ripple-effect";
initRippleEffect();useRippleEffect()
React hook that initializes ripple effects on mount.
import { useRippleEffect } from "@rocket2mars/react-ripple-effect";
function App() {
useRippleEffect();
// ...
}How It Works
The library automatically attaches ripple effects to any element that:
- Has the
ripple-hostclass, OR - Has a
data-ripple-colorattribute
When you call initRippleEffect() or use useRippleEffect(), it searches for all matching elements and attaches event listeners for pointer and touch events. The ripple effect is created dynamically based on the click/touch position.
Browser Support
- Chrome (latest)
- Firefox (latest)
- Safari (latest)
- Edge (latest)
- Mobile browsers (iOS Safari, Chrome Mobile)
License
MIT
