Reveal Card Demo
nyxui/reveal-card-demoFreeExample
Example showing a reveal card.
Live preview
live · rendered by the registry
Rendered by shadcn/ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://nyxui.com/r/reveal-card-demo.jsonSource
1import React from "react";2import RevealCard from "../ui/reveal-card";34const RevealCardDemo = () => {5 const heroes = [6 {7 coverImage:8 "https://raw.githubusercontent.com/MihirJaiswal/hero-hq/main/public/spidermanposter.jpg",9 titleImage:10 "https://raw.githubusercontent.com/MihirJaiswal/hero-hq/main/public/pngwing1.png",11 characterImage:12 "https://raw.githubusercontent.com/MihirJaiswal/hero-hq/main/public/spidermanpng.png",13 },14 ];1516 return (17 <div className="py-6 px-6">18 <div className="max-w-7xl mx-auto">19 <div className="mb-20 text-center">20 <h1 className="text-3xl font-extrabold mb-4 relative">21 <span>Hover on the card</span>22 </h1>23 </div>2425 <div className="flex flex-wrap justify-center gap-16 mt-4 mb-16">26 {heroes.map((hero, index) => (27 <div28 key={index}29 className="relative group transform transition-all duration-300 hover:scale-105"30 >31 <div className="relative flex flex-col items-center">32 <RevealCard33 coverImage={hero.coverImage}34 titleImage={hero.titleImage}35 characterImage={hero.characterImage}36 />37 </div>38 </div>39 ))}40 </div>41 </div>42 </div>43 );44};4546export default RevealCardDemo;
What it pulls in
Other registry items
Files it writes
More from shadcn/ui
All 68 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| 3D Layered Card Demo3d-layered-card-demo | shadcn/ui | Examples | Free | no deps | |
| Animated Code Block Demoanimated-code-block-demo | shadcn/ui | Examples | Free | no deps | |
| Animated Grainy Background Demoanimated-grainy-bg-demo | shadcn/ui | Examples | Free | no deps | |
| Animated Text Demoanimated-text-demo | shadcn/ui | Examples | Free | no deps | |
| Apple Glass Effect Demoapple-glass-effect-demo | shadcn/ui | Examples | Free | no deps | |
| Bubble Background Demobubble-background-demo | shadcn/ui | Examples | Free | no deps | |
| Custom Cursor Democustom-cursor-demo | shadcn/ui | Examples | Free | no deps | |
| Cyberpunk Card Democyberpunk-card-demo | shadcn/ui | Examples | Free | no deps |
