Hover Effects
weekendsuperhero-io-sistine/hover-effectsUnverifiedUtility
Shared CVA hover-effect variants (glow, shimmer, ripple, lift, scale) for any component.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/Weekendsuperhero-io/sistine/main/hover-effects.jsonSource
1import { cva } from "class-variance-authority";23/**4 * Shared hover effect variants for all Sistine components5 *6 * Effects:7 * - none: No hover effect8 * - glow: Themed glow shadow (--glass-glow, follows the tint hue) that intensifies on hover9 * - shimmer: Moving shimmer effect across the component10 * - ripple: Ripple effect that scales outward on hover11 * - lift: Subtle lift effect with shadow increase12 * - scale: Scale up slightly on hover13 */14export const hoverEffects = cva("transition duration-300", {15 variants: {16 hover: {17 none: "",18 glow: "glass-glow hover:glass-glow-lg",19 shimmer:20 "relative overflow-hidden before:absolute before:inset-0 before:-translate-x-full before:bg-gradient-to-r before:from-transparent before:via-white/20 before:to-transparent hover:before:translate-x-full before:transition-transform before:duration-1000",21 ripple:22 "relative overflow-hidden after:absolute after:inset-0 after:scale-0 after:rounded-full after:bg-white/30 after:transition-transform after:duration-500 hover:after:scale-150",23 lift: "hover:-translate-y-1 hover:shadow-lg",24 scale: "hover:scale-105",25 },26 },27 defaultVariants: {28 hover: "none",29 },30});3132export type HoverEffect = "none" | "glow" | "shimmer" | "ripple" | "lift" | "scale";
What it pulls in
npm packages
Files it writes
More from weekendsuperhero-io/sistine
All 71 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Canvas Background Utilscanvas-background-utils | weekendsuperhero-io/sistine | Utilities | Unverified | no deps | |
| Gradient Utilsgradient-utils | weekendsuperhero-io/sistine | Utilities | Unverified | no deps | |
| Material Systemmaterial | weekendsuperhero-io/sistine | Utilities | Unverified | no deps | |
| OKLCH Utilsoklch-utils | weekendsuperhero-io/sistine | Utilities | Unverified | no deps | |
| Theme Generatortheme-generator | weekendsuperhero-io/sistine | Utilities | Unverified | no deps |
