Full Bleed Strip With Sheet Viewer

(Edge to edge)

A strip that runs off both sides of the page.

About this block

Full Bleed Strip With Sheet ViewerPRO

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.

Gallery11: Full Bleed Strip With Sheet Viewer

A strip of portrait tiles running edge to edge with a one-pixel gap, opening into a viewer where the details live in a sheet that slides down out of the way so the picture can be seen whole.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Gallery11, gallery11Demo } from "@/components/beste/block/gallery11";

export default function Page() {
  return <Gallery11 {...gallery11Demo} />;
}

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

tsx
import { Gallery11 } from "@/components/beste/block/gallery11";

export default function Page() {
  return (
    <Gallery11
      badge={{ label: "Edge to edge" }}
      heading="A strip that runs off both sides of the page."
      frames={[
        {
          src: "/strip/fitting.jpg",
          alt: "Garments in soft light",
          caption: "Second fitting",
          meta: "Antwerp, January",
          detail: "Shot at four in the afternoon with the blinds half down.",
        },
        {
          src: "/strip/seam.jpg",
          alt: "Mark pressed into a seam",
          caption: "Mark pressed into the seam",
          meta: "Antwerp, January",
          detail: "The only place the logo appears on the finished piece.",
        },
      ]}
      labels={{
        openLabel: "Open this frame",
        closeLabel: "Close the viewer",
        previousLabel: "Previous frame",
        nextLabel: "Next frame",
        expandLabel: "Show the details",
        collapseLabel: "Hide the details",
        counterSeparator: "of",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringCentred section heading
framesFrame[][]Pictures in the strip, in order
labelsGallery11Labels{}Fixed strings that are not content: viewer controls, sheet labels and the counter separator
lightboxbooleantrueRender the built-in viewer; set false to leave the frames static
classNamestringExtra classes for the outer <section>
ts
type Frame = {
  src: string;
  alt: string;
  caption: string;
  meta: string;
  detail: string;
};

type Gallery11Labels = {
  openLabel?: string;
  closeLabel?: string;
  previousLabel?: string;
  nextLabel?: string;
  expandLabel?: string;
  collapseLabel?: string;
  counterSeparator?: string;
};

Behavior notes

  • The strip sits outside the page container, so the tiles bleed to both edges; a gap-1 and no radius keep them reading as one continuous band rather than a row of cards.
  • The sheet slides down to translate-y-[calc(100%-4.5rem)] rather than disappearing, so its handle row stays on screen and the picture can be seen whole without leaving the viewer.
  • The sheet reopens every time a frame is opened from the strip, so the details are always the first thing a new visitor sees.
  • Its toggle carries aria-expanded and swaps its own label between the expand and collapse strings, so the state is announced rather than only drawn.
  • The picture is object-contain across the whole viewport on a solid bg-foreground, so a tall frame is never cropped by the sheet.
  • Step controls sit top left and close sits top right, keeping all three away from the sheet at the bottom.
  • Thumbnails inside the sheet fade to opacity-40 when they are not the open frame, marking position without a border.
  • Setting lightbox={false} disables every tile button and switches the cursor back to default, leaving the strip as a static band.

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

gallery18

Edition Inspector

Matted edition cards opening a viewer that keeps the whole sheet and its detail crops in one place: pill controls swap what the large frame shows while the side column holds process, sheet size and edition.

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

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

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

gallery6

Mosaic Full Screen Viewer

Dense caption-free mosaic where every tile carries an expand seal and opens a full-screen viewer with arrow controls on the picture, escape and arrow keys, a counter, the caption and a thumbnail filmstrip.