ripple button
This commit is contained in:
@@ -1,58 +1,42 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { AnimatePresence, motion } from "motion/react"
|
|
||||||
import { useState } from "react"
|
import { useState } from "react"
|
||||||
|
import { motion, AnimatePresence } from "motion/react"
|
||||||
|
|
||||||
export default function ExitAnimation() {
|
export function useRipple() {
|
||||||
const [isVisible, setIsVisible] = useState(true)
|
const [ripples, setRipples] = useState([])
|
||||||
|
|
||||||
const container = {
|
const addRipple = (e) => {
|
||||||
display: "flex",
|
const rect = e.currentTarget.getBoundingClientRect()
|
||||||
flexDirection: "column",
|
const x = e.clientX - rect.left
|
||||||
width: 100,
|
const y = e.clientY - rect.top
|
||||||
height: 160,
|
const id = Date.now()
|
||||||
position: "relative",
|
|
||||||
|
setRipples((prev) => [...prev, { x, y, id }])
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
setRipples((prev) => prev.filter((r) => r.id !== id))
|
||||||
|
}, 600)
|
||||||
}
|
}
|
||||||
|
|
||||||
const box = {
|
const Ripples = (
|
||||||
width: 100,
|
<AnimatePresence>
|
||||||
height: 100,
|
{ripples.map((ripple) => (
|
||||||
backgroundColor: "#0cdcf7",
|
<motion.span
|
||||||
borderRadius: 10,
|
key={ripple.id}
|
||||||
}
|
initial={{ scale: 0, opacity: 0.6 }}
|
||||||
|
animate={{ scale: 4, opacity: 0 }}
|
||||||
const button = {
|
exit={{ opacity: 0 }}
|
||||||
backgroundColor: "#0cdcf7",
|
transition={{ duration: 0.6, ease: "easeOut" }}
|
||||||
borderRadius: 10,
|
style={{
|
||||||
padding: "10px 20px",
|
left: ripple.x,
|
||||||
color: "#0f1115",
|
top: ripple.y,
|
||||||
position: "absolute",
|
}}
|
||||||
bottom: 0,
|
className="absolute h-8 w-8 rounded-full bg-white/70 pointer-events-none -translate-x-1/2 -translate-y-1/2"
|
||||||
left: 0,
|
/>
|
||||||
right: 0,
|
))}
|
||||||
}
|
</AnimatePresence>
|
||||||
|
|
||||||
return (
|
|
||||||
<div style={container}>
|
|
||||||
<AnimatePresence initial={false}>
|
|
||||||
{isVisible && (
|
|
||||||
<motion.div
|
|
||||||
initial={{ opacity: 0, scale: 0 }}
|
|
||||||
animate={{ opacity: 1, scale: 1 }}
|
|
||||||
exit={{ opacity: 0, scale: 0 }}
|
|
||||||
style={box}
|
|
||||||
key="box"
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</AnimatePresence>
|
|
||||||
|
|
||||||
<motion.button
|
|
||||||
style={button}
|
|
||||||
onClick={() => setIsVisible(!isVisible)}
|
|
||||||
whileTap={{ scale: 0.95 }}
|
|
||||||
>
|
|
||||||
{isVisible ? "Hide" : "Show"}
|
|
||||||
</motion.button>
|
|
||||||
</div>
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
return { addRipple, Ripples }
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user