Animated Background Button
Animated Background Button is a React and Tailwind CSS button component from Cult UI, licensed MIT. Copy it and paste it into your project.
Cult UI
MIT
buttons
What it is
Animated Background Button is a React and Tailwind CSS button component from Cult UI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
Needs
npm i @radix-ui/react-slot class-variance-authority
Licence
This component comes from Cult UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Animated Background Button
import * as React from "react"
import { Slot } from "@radix-ui/react-slot"
import { cva } from "class-variance-authority"
import { cn } from "@/lib/utils"
const outerDivVariants = cva("relative inline-block overflow-hidden ", {
variants: {
size: {
sm: "",
default: "",
lg: "",
},
rounded: {
full: "rounded-full before:rounded-full",
xl: "rounded-xl before:rounded-xl",
"2xl": "rounded-2xl before:rounded-2xl",
"3xl": "rounded-3xl before:rounded-3xl",
sm: "rounded-sm before:rounded-sm",
xs: "rounded-xs before:rounded-xs",
base: "rounded before:rounded",
},
},
defaultVariants: {
size: "default",
},
})
const innerSpanVariants = cva(
[
"absolute inset-[-1000%] m-auto block ", // Base styles for positioning and display
],
{
variants: {
animation: {
pulse: "animate-pulse", // Pulsating effect
"spin-fast": "animate-[spin_2s_linear_infinite]", // Continuous rotation
"spin-slow": "animate-[spin_8s_linear_infinite]", // Bouncing effect
spin: "animate-[spin_4s_linear_infinite]", // Bouncing effect
// Add more animations here
},
gradient: {
sunrise: "text-black font-bold",
ocean:
"bg-[conic-gradient(from_90deg_at_50%_50%,#a1c4fd_0%,#c2e9fb_50%,#a1c4fd_100%)] ",
candy:
"bg-[conic-gradient(from_90deg_at_50%_50%,#ff9a9e_0%,#fad0c4_50%,#fad0c4_90%,#ff9a9e_100%)] ",
forest:
"bg-[conic-gradient(from_90deg_at_50%_50%,#85d797_0%,#1a806b_50%,#85d797_100%)] ",
sunset:
"bg-[conic-gradient(from_90deg_at_50%_50%,#fe5d75_0%,#f5af19_50%,#fe5d75_100%)] ",
nebula:
"bg-[conic-gradient(from_90deg_at_50%_50%,#A77BFE_0%,#8860D0_50%,#A77BFE_100%)] ",
default:
"bg-[conic-gradient(from_90deg_at_50%_50%,#E2CBFF_0%,#393BB2_50%,#E2CBFF_100%)] ",
},
},
compoundVariants: [
{
animation: "spin",
gradient: "sunrise",
className: "duration-4s ease-linear", // Customizes the animation duration and easing for a specific variant
},
],
defaultVariants: {
animation: "spin",
gradient: "forest",
},
}
)
const buttonVariants = cva(
"relative px-6 py-2 transition-all duration-150 ease-in-out disabled:pointer-events-none disabled:opacity-50 text-sm overflow-hidden",
{
variants: {
size: {
sm: "text-xs px-4 py-1",
default: "text-sm px-6 py-2",
lg: "text-base px-8 py-3",
},
shadow: {
flat: "",
soft: "shadow-[0_2px_4px_rgba(0,0,0,0.15),inset_0_1px_1px_rgba(255,255,255,0.15),inset_0_-1px_2px_rgba(0,0,0,0.3)] dark:shadow-[0_2px_4px_rgba(0,0,0,0.25),inset_0_1px_1px_rgba(0,0,0,0.2),inset_0_-1px_2px_rgba(0,0,0,0.5)]",
base: "shadow-[0_3px_5px_rgba(0,0,0,0.2),inset_0_0.5px_1px_rgba(255,255,255,0.1),inset_0_-2px_3px_rgba(0,0,0,0.4)] dark:shadow-[0_3px_5px_rgba(0,0,0,0.3),inset_0_0.5px_1px_rgba(0,0,0,0.2),inset_0_-2px_3px_rgba(0,0,0,0.6)]",
deep: "shadow-[0_4px_6px_rgba(0,0,0,0.25),inset_0_1px_2px_rgba(255,255,255,0.2),inset_0_-2px_4px_rgba(0,0,0,0.5)] dark:shadow-[0_4px_6px_rgba(0,0,0,0.35),inset_0_1px_2px_rgba(0,0,0,0.3),inset_0_-2px_4px_rgba(0,0,0,0.7)]",
deeper:
"shadow-[0_6px_8px_rgba(0,0,0,0.3),inset_0_2px_3px_rgba(255,255,255,0.25),inset_0_-3px_6px_rgba(0,0,0,0.6)] dark:shadow-[0_6px_8px_rgba(0,0,0,0.4),inset_0_2px_3px_rgba(0,0,0,0.35),inset_0_-3px_6px_rgba(0,0,0,0.8)]",
},
gradient: {
sunrise: "text-black font-bold",
ocean: "text-black font-bold",
candy: "text-black font-bold",
forest: "text-black font-bold",
sunset: "text-black font-bold",
nebula: "text-white font-bold",
default: "text-white font-bold",
},
rounded: {
full: "rounded-full before:rounded-full",
xl: "rounded-xl before:rounded-xl",
"2xl": "rounded-2xl before:rounded-2xl",
"3xl": "rounded-3xl before:rounded-3xl",
sm: "rounded-sm before:rounded-sm",
xs: "rounded-xs before:rounded-xs",
base: "rounded before:rounded",
},
},
defaultVariants: {
size: "default",
shadow: "base",
rounded: "xl",
},
}
)
export interface UnifiedButtonProps
extends React.ButtonHTMLAttributes<HTMLButtonElement> {
variant?: "primary" | "success" | "secondary" | "destructive" | "ghost"
size?: "sm" | "lg" | "default"
shadow?: "flat" | "soft" | "base" | "deep" | "deeper"
rounded?: "full" | "xl" | "2xl" | "3xl" | "sm" | "xs" | "base"
asChild?: boolean
showBackground?: boolean
animation?: "spin" | "pulse" | "spin-slow" | "spin-fast" | "spin"
gradient?:
| "sunrise"
| "ocean"
| "candy"
| "default"
| "forest"
| "sunset"
| "nebula"
}
const BgAnimateButton = React.forwardRef<HTMLButtonElement, UnifiedButtonProps>(
(
{
variant = "primary",
size = "default",
showBackground = false,
rounded = "full",
shadow = "soft",
gradient = null,
animation = null,
className,
asChild = false,
...props
},
ref
) => {
const Comp = asChild ? Slot : "button"
return (
<Comp
className={cn(outerDivVariants({ size, rounded }), className)}
ref={ref}
{...props}
>
{gradient && (
<span className={cn(innerSpanVariants({ gradient, animation }))} />
)}
<div
className={cn(buttonVariants({ shadow, rounded, size, gradient }))}
>
{props.children || "Button"}
</div>
</Comp>
)
}
)
BgAnimateButton.displayName = "BgAnimateButton"
export { BgAnimateButton }
export default BgAnimateButton