Wide Slide Reel

(Reel)

One frame at a time, in the order we shot them.

Studio interior with raw concrete and a long shared worktable
Type specimen sheets laid out on a studio table
Printed specimen pages laid flat
Signage system mounted across a minimal lobby wall

Concrete, timber, one long table

Studio, Rotterdam

About this block

Wide Slide ReelPRO

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.

Gallery4: Wide Slide Reel

A single wide plate that slides one frame at a time, with the step controls up in the header and the caption, place and progress dashes on the row 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.

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/gallery4?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

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

Quick start

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

tsx
import { Gallery4, gallery4Demo } from "@/components/beste/block/gallery4";

export default function Page() {
  return <Gallery4 {...gallery4Demo} />;
}

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

tsx
import { Gallery4 } from "@/components/beste/block/gallery4";

export default function Page() {
  return (
    <Gallery4
      badge={{ label: "Reel" }}
      heading="One frame at a time, in the order we shot them."
      slides={[
        {
          src: "/reel/studio.jpg",
          alt: "Studio interior with a long shared worktable",
          title: "Concrete, timber, one long table",
          meta: "Studio, Rotterdam",
        },
        {
          src: "/reel/specimens.jpg",
          alt: "Specimen sheets laid out on a table",
          title: "Specimen sheets, laid flat",
          meta: "Studio table, morning light",
        },
      ]}
      labels={{ previousLabel: "Previous slide", nextLabel: "Next slide" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringSection heading in the header row
slidesSlide[][]Frames in the reel, in order
labelsGallery4Labels{}Fixed strings that are not content: the two step controls
classNamestringExtra classes for the outer <section>
ts
type Slide = {
  src: string;
  alt: string;
  title: string;
  meta: string;
};

type Gallery4Labels = {
  previousLabel?: string;
  nextLabel?: string;
};

Behavior notes

  • The reel is one flex row translated by activeIndex * 100% inside an overflow-hidden frame, so there is no scroll position to fight and no scrollbar to hide.
  • Stepping wraps in both directions, so the last frame runs back to the first rather than dead-ending.
  • The step controls only render when there is more than one slide, so a single-picture reel has no controls to press.
  • They sit in the header on the heading's baseline, which keeps them in the same place whatever the caption underneath does.
  • Progress dashes are real button elements with aria-pressed and an aria-label carrying the slide title, so they are a control rather than a decorative row of dashes.
  • The plate switches ratio rather than height (aspect-[16/10] becoming md:aspect-[2/1]), keeping the reel cinematic on desktop without a letterbox strip on a phone.
  • The caption row is a md:grid-cols-[1fr_auto] md:items-end, so the title stays left and the dashes sit at the right on the same baseline.
  • This block is a reel rather than a lightbox gallery: it has no viewer, because the plate is already the full-width view.

More Gallery blocks

View all Gallery
PRO

gallery27

River Strip

A horizontal, snap-scrolling strip of photographs that starts in line with the heading and runs off the right edge, each frame carrying a serif subject and a small-caps place and month; steered by round arrow buttons, and any frame opens a filmstrip lightbox on ink with film grain, a counter, arrow and keyboard navigation and a thumbnail rail along the foot.

PRO

gallery5

Filmstrip Stage Viewer

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.

PRO

gallery9

Zoomable Justified Gallery

Justified rows of frames that grow to fill every line, opening a viewer whose picture doubles as the zoom control: clicking switches between fitting the screen and filling it, with the caption and controls on one closing rule.

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.

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

gallery29

Plate Grid Lightbox

An even three-column grid of photographic plates that open into an ink lightbox: every frame keeps the same ratio so the captions line up, arrows and keys turn the page, either half of the plate is clickable, and a plate that belongs to a page offers it as a link.