Filmstrip Stage ViewerPRO

Cinematic stage frame with the caption and frame counter set on a gradient at its foot, round arrow controls on the picture itself, and a scrolling filmstrip below where the inactive thumbnails sit back at low opacity.

Gallery5: Filmstrip Stage Viewer

One picture held at stage size with its caption and counter on a scrim, arrows inside the frame, and a filmstrip of every other frame underneath. The stage is the viewer, so nothing ever covers the page.

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.

Upgrade Now

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/gallery5?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/gallery5?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/gallery5.tsx plus the badge7 eyebrow it uses.

Quick start

The installed file exports gallery5Demo alongside the block: the exact props behind the preview above. Spread it to get a working gallery in one line.

tsx
import { Gallery5, gallery5Demo } from "@/components/beste/block/gallery5";

export default function Page() {
  return <Gallery5 {...gallery5Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Gallery5 } from "@/components/beste/block/gallery5";

export default function Page() {
  return (
    <Gallery5
      badge={{ label: "Frame by frame" }}
      heading="One picture at a time, as big as the page allows."
      items={[
        {
          src: "/frames/room.jpg",
          alt: "Empty room lit by a tall window",
          caption: "Empty room, one window",
          meta: "Rotterdam, March",
        },
        {
          src: "/frames/ceiling.jpg",
          alt: "Vaulted ceiling with repeating ribs",
          caption: "Ribs, seen from below",
          meta: "Rotterdam, March",
        },
      ]}
      labels={{ previousLabel: "Previous frame", nextLabel: "Next frame", counterSeparator: "of" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringSection heading above the stage
itemsStageImage[][]Frames, first one shown on mount
labelsGallery5Labels{}Fixed strings that are not content: the step controls and the counter separator
classNamestringExtra classes for the outer <section>
ts
type StageImage = {
  src: string;
  alt: string;
  caption: string;
  meta: string;
};

type Gallery5Labels = {
  previousLabel?: string;
  nextLabel?: string;
  counterSeparator?: string;
};

Behavior notes

More Gallery blocks

View all Gallery
PRO

gallery7

Counter Scrolling Image Bands

Two full-bleed image tracks scrolling in opposite directions under a centered statement, pausing together on hover, where any frame opens a framed viewer: the picture sits in a mount on a scrim with its caption, position and controls beneath it.

PRO

gallery19

Dark Room Fade Viewer

Inverted low-light room where staggered frames hang on a dark panel, opening a viewer with no chrome at all: the work fades up like a lamp on a dimmer, the caption follows it, and a dot rail walks the hang.

PRO

gallery11

Full Bleed Strip With Sheet Viewer

Edge-to-edge strip of tall frames opening a viewer where the picture fills the screen and the caption, note and thumbnails sit in a sheet that slides off the bottom when you want the frame uncovered.

PRO

gallery10

Overview Toggle Viewer

Square grid whose viewer holds two states: a single frame with caption and controls, or an in-place overview of the whole set that you can jump from without closing the layer.

PRO

gallery4

Wide Slide Reel

Single-frame image reel that slides on a transform, driven by round arrow buttons in the header and a row of bar indicators beside the caption, with no hover behaviour on the image itself.

PRO

gallery2

Lightbox Frame Grid

Captioned image grid where any tile opens a full-screen lightbox on a dark scrim, with a frame counter, keyboard arrows, escape to close and previous and next controls beside the caption.