Dot Pattern Background
shadcn-ui-blocks-shadcnship/background-02FreeBlock
Customizable dot pattern background with adjustable dot color, size, spacing, and opacity. Use it behind hero sections or feature areas to add visual depth without distracting from your main content.
Install it
npx shadcn@latest add https://shadcnship.com/r/background-02.jsonSource
1import { cn } from "@/lib/utils";23type MaskPosition = "top" | "bottom" | "center" | "none";45type Background02Props = {6 className?: string;7 dotColor?: string;8 dotSize?: number;9 spacingX?: number;10 spacingY?: number;11 mask?: MaskPosition;12};1314const getMaskStyle = (mask: MaskPosition): string => {15 switch (mask) {16 case "top":17 return "radial-gradient(ellipse 60% 50% at 50% 0%, transparent 40%, #000 110%)";18 case "bottom":19 return "radial-gradient(ellipse 60% 50% at 50% 100%, transparent 40%, #000 110%)";20 case "center":21 return "radial-gradient(ellipse 50% 50% at 50% 50%, transparent 20%, #000 70%)";22 case "none":23 default:24 return "none";25 }26};2728const Background02 = ({29 className,30 dotColor = "var(--border)",31 dotSize = 1,32 spacingX = 16,33 spacingY = 16,34 mask = "none",35}: Background02Props) => {36 const maskStyle = getMaskStyle(mask);3738 return (39 <div className={cn("absolute inset-0 z-0 h-full w-full", className)}>40 <div41 className="absolute inset-0 h-full w-full pointer-events-none"42 style={{43 backgroundImage: `radial-gradient(${dotColor} ${dotSize}px, transparent ${dotSize}px)`,44 backgroundSize: `${spacingX}px ${spacingY}px`,45 ...(mask !== "none" && {46 maskImage: maskStyle,47 WebkitMaskImage: maskStyle,48 }),49 }}50 />51 </div>52 );53};5455export default Background02;
Files it writes
More from shadcn-ui-blocks
All 74 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Square Grid Backgroundbackground-01 | shadcn-ui-blocks | Blocks | Free | no deps | |
| Diagonal Stripes Backgroundbackground-03 | shadcn-ui-blocks | Blocks | Free | no deps | |
| Vertical Lines Backgroundbackground-04 | shadcn-ui-blocks | Blocks | Free | no deps | |
| Interactive Grid Backgroundbackground-05 | shadcn-ui-blocks | Blocks | Free | no deps | |
| Banner 01banner-01 | shadcn-ui-blocks | Blocks | Free | 1 dep | |
| Blog 01blog-01 | shadcn-ui-blocks | Blocks | Free | no deps | |
| Changelog 01changelog-01 | shadcn-ui-blocks | Blocks | Free | no deps | |
| Comparison 01comparison-01 | shadcn-ui-blocks | Blocks | Free | 1 dep |
