ReferenceDisplay
Thumbnail
Time-based thumbnail preview component for timeline scrubbing and hover previews
Quick Start: Video Track
Thumbnail can read thumbnail cues directly from your video track. Add a <track> with kind="metadata" and label="thumbnails" to your media element.
Mux provides this as storyboard.vtt:
https://image.mux.com/{PLAYBACK_ID}/storyboard.vtt
That track is cross-origin, and a cross-origin <track> only loads when the media element is CORS-enabled:
A same-origin track needs none of this.
Import
Anatomy
Behavior
The thumbnail root resolves an image for the current time, owns src and srcset on it, and reports its loading lifecycle.
Render that image with Thumbnail.Image.
Supported source formats:
- Text track:
<track kind="metadata" label="thumbnails" src="...vtt"> - JSON array:
{ url, startTime, endTime? }[] - JSON sprite array:
{ url, startTime, endTime?, width, height, coords }[]
Text-track mode needs Player because it reads track state from the player store. JSON modes (thumbnails prop) work without a player.
The component picks the latest thumbnail whose startTime is less than or equal to the current time, then scales/clips sprite tiles to fill CSS min/max constraints while preserving aspect ratio. Tiles scale up as well as down, so a preview whose max-width grows — a container query widening it in fullscreen, say — grows with it.
Cross-origin images
Leave crossOrigin unset and the component follows the media element. A cross-origin thumbnail <track> only loads when the media is CORS-enabled, so the images its cues point at are fetched with that same mode. Skins get this for free, with nothing to thread through.
Opt out to fetch them without CORS:
An empty value does not opt out either. The CORS settings attribute reads anything other than use-credentials as Anonymous, so it is a value like any other.
Thumbnails you supply through thumbnails never inherit, since they need not be related to the media element at all. Set crossOrigin yourself when those images need it.
Styling
Use state data attributes for pure CSS styling:
React renders a root <div> around an <img>. State attributes belong to Thumbnail.Root, while image attributes and render belong to Thumbnail.Image:
The root clips to the selected tile while the image inside spans the whole sprite sheet, so anything after the image in flow lands past the clip edge. Position the root and lay overlays over it:
Accessibility
Thumbnail.Root is decorative by default (aria-hidden="true"). It is intended for visual preview UX (for example, timeline hover previews) rather than primary accessible content.
Examples
Text Track (VTT)
JSON Array
JSON Sprite Array
API Reference
Root
Resolves, sizes, and clips a thumbnail for a point in time.
Renders a div and exposes data-hidden, data-loading, and data-error for styling every layer in the preview.
Render Thumbnail.Image inside it for the image the root controls and measures.
Props
State
render, className, and style props.
