← Components

Tilt Card

component

A card that tilts in 3D toward the cursor. Tune the intensity to taste.

Tilt me

Follows your cursor in 3D

Installation

Namespace
npx shadcn@latest add @soultel/tilt-card
URL
npx shadcn@latest add https://asafefe.dev/r/tilt-card.json

Usage

usage.tsx
import { TiltCard } from "@/components/tilt-card"

export function Example() {
  return (
    <TiltCard className="w-64 p-6">
      <p>Hover to tilt</p>
    </TiltCard>
  )
}