Before and after comparison where a pointer-driven handle clips the earlier photograph over the later one, with pill labels on both corners and a ruled row of outcome figures beneath.
A true before and after: two photographs stacked in one frame with a draggable divider between them, labelled pills in the top corners, and a ruled row of facts underneath.
Upgrade to Pro
Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.
Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.
Radix flavor
npx shadcn add "https://ui.beste.co/r/reveal6?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/reveal6?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/reveal6.tsx plus the badge7 eyebrow it uses.
The installed file exports reveal6Demo alongside the block: the exact props behind the preview above. Spread it to get a working comparison in one line.
import { Reveal6, reveal6Demo } from "@/components/beste/block/reveal6";
export default function Page() {
return <Reveal6 {...reveal6Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Reveal6 } from "@/components/beste/block/reveal6";
export default function Page() {
return (
<Reveal6
badge={{ label: "Before and after" }}
heading="Drag the line and watch nine years disappear."
description="The building did not change. The way you find your way around it did."
startPosition={50}
before={{ src: "/case/before.jpg", alt: "Bare concrete stairwell", label: "Before" }}
after={{ src: "/case/after.jpg", alt: "Wayfinding signage in place", label: "After" }}
facts={[
{ title: "Components in the kit", value: "11" },
{ title: "Signs installed", value: "1,400" },
]}
labels={{ handleLabel: "Drag to compare" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow label rendered as a Badge7 |
heading | string | – | Section heading in the left header column |
description | string | – | Supporting paragraph in the right header column |
before | CompareImage | – | The image revealed to the left of the divider |
after | CompareImage | – | The image revealed to the right of the divider |
facts | CompareFact[] | [] | Ruled facts under the comparison |
startPosition | number | 50 | Where the divider starts, as a percentage from the left |
labels | Reveal6Labels | {} | Fixed strings that are not content: the handle's accessible name |
className | string | – | Extra classes for the outer <section> |
type CompareImage = {
src: string;
alt: string;
label: string;
};
type CompareFact = {
title: string;
value: string;
};
type Reveal6Labels = {
handleLabel?: string;
};clip-path: inset() on the before layer rather than a width change, so neither photograph is ever squashed: both stay object-cover at full frame size while only the visible slice changes.onPointerDown captures the pointer on the container, so a fast drag that leaves the box still tracks until release.touch-none is set on the frame, which is what stops a touch drag from scrolling the page instead of moving the divider.role="slider" button with aria-valuemin, aria-valuemax and a live aria-valuenow, and arrow keys nudge it in four percent steps, so the comparison is operable without a pointer.startPosition is only the initial value: the component owns the position from then on, so passing a new one does not fight the user's drag.aspect-[16/10] becoming md:aspect-[2/1]), keeping the pair cinematic on desktop without a letterbox strip on a phone.reveal1
Interactive image comparison component with a draggable divider supporting horizontal and vertical orientations. Perfect for showcasing transformations, photo editing results, or design improvements.
reveal2
Split-layout image comparison with a sidebar featuring benefit highlights and icons alongside a draggable before/after slider. Perfect for demonstrating product improvements with detailed feature callouts.
reveal9
Before and after comparison seen through a draggable circular lens: the earlier photograph fills the frame while the later one shows only inside the circle, which follows the pointer or the arrow keys.
reveal8
Comparison that splits horizontally instead of down the middle: a draggable divider wipes the upper photograph away to expose the lower one, with pill labels and a caption for each state.