magic-ui
components
ui

interactive-grid-pattern

A interactive background grid pattern made with SVGs, fully customizable using Tailwind CSS.

grid
hover
interactive
positioning
transition
View Docs

Source Code

Files
interactive-grid-pattern
1"use client";
2 
3import { cn } from "@/lib/utils";
4import { InteractiveGridPattern } from "@/components/magicui/interactive-grid-pattern";
5 
6export function InteractiveGridPatternDemo() {
7  return (
8    <div className="relative flex h-[500px] w-full flex-col items-center justify-center overflow-hidden rounded-lg border bg-background md:shadow-xl">
9      <p className="z-10 whitespace-pre-wrap text-center text-5xl font-medium tracking-tighter text-black dark:text-white">
10        Interactive Grid Pattern
11      </p>
12      <InteractiveGridPattern
13        className={cn(
14          "[mask-image:radial-gradient(400px_circle_at_center,white,transparent)]",
15          "inset-x-0 inset-y-[-30%] h-[200%] skew-y-12",
16        )}
17      />
18    </div>
19  );
20}