Metallic Card 3D
▦ CardsPremium 3D metallic card with real-time rotation and dynamic light reflections.
card3dmetalliccss-transformsinteractivedrag
No preview available
CSS 3D Transforms ~ Drag to Rotate
Controls
#6366f1
Premium 3D metallic card with real-time rotation and dynamic light reflections.
No preview available
CSS 3D Transforms ~ Drag to Rotate
Cards / React Component
Premium 3D metallic card with real-time rotation and dynamic light reflections.
Copy the shadcn CLI command below. Replace YOUR_LICENSE_KEY with the license key from your FutureUI account — or log in and it will auto-fill for you.
npx shadcn@latest add "https://futureui.studio/api/registry/metallic-card-3d.json?key=YOUR_LICENSE_KEY" import { MetallicCard3D } from './MetallicCard3D';
function FrontContent() {
return (
<div className="flex flex-col items-center justify-center h-full gap-2">
<h2 className="text-xl font-semibold text-white">Front Side</h2>
<p className="text-sm text-white/50">Hover to flip</p>
</div>
);
}
function BackContent() {
return (
<div className="flex flex-col items-center justify-center h-full gap-2">
<h2 className="text-xl font-semibold text-white">Back Side</h2>
<p className="text-sm text-white/50">Card content here</p>
</div>
);
}
export default function Example() {
return (
<MetallicCard3D
orientation="portrait"
accentColor="#8b5cf6"
front={<FrontContent />}
back={<BackContent />}
/>
);
}