-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
175 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import React, { CSSProperties } from "react"; | ||
|
||
interface RippleProps { | ||
mainCircleSize?: number; | ||
mainCircleOpacity?: number; | ||
numCircles?: number; | ||
} | ||
|
||
const Ripple = React.memo(function Ripple({ | ||
mainCircleSize = 210, | ||
mainCircleOpacity = 0.24, | ||
numCircles = 8 | ||
}: RippleProps) { | ||
return ( | ||
<div className="absolute inset-0 flex items-center justify-center bg-white/5 [mask-image:linear-gradient(to_bottom,white,transparent)]"> | ||
{Array.from({ length: numCircles }, (_, i) => { | ||
const size = mainCircleSize + i * 70; | ||
const opacity = mainCircleOpacity - i * 0.03; | ||
const animationDelay = `${i * 0.06}s`; | ||
const borderStyle = i === numCircles - 1 ? "dashed" : "solid"; | ||
const borderOpacity = 5 + i * 5; | ||
|
||
return ( | ||
<div | ||
key={i} | ||
className={`absolute animate-ripple rounded-full border bg-foreground/25 shadow-xl [--i:${i}]`} | ||
style={ | ||
{ | ||
width: `${size}px`, | ||
height: `${size}px`, | ||
opacity, | ||
animationDelay, | ||
borderStyle, | ||
borderWidth: "1px", | ||
borderColor: `hsl(var(--foreground), ${borderOpacity / 100})`, | ||
top: "50%", | ||
left: "50%", | ||
transform: "translate(-50%, -50%) scale(1)" | ||
} as CSSProperties | ||
} | ||
/> | ||
); | ||
})} | ||
</div> | ||
); | ||
}); | ||
|
||
Ripple.displayName = "Ripple"; | ||
|
||
export default Ripple; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.