Skip to content
FrameworkStyle

media-status-indicator

Display temporary visual feedback for keyboard and gesture actions

Import

import '@videojs/html/ui/status-indicator';

Anatomy

<media-status-indicator>
  <media-status-indicator-value></media-status-indicator-value>
</media-status-indicator>

Behavior

StatusIndicator displays feedback for actions emitted by a Hotkey or Gesture in the same player Container. It does not react to buttons, direct player-store changes, or media state changes on their own.

The input event arrives before its action is resolved. The indicator uses the media snapshot from that moment to predict the next visual status:

Action data-status Value
togglePaused "play" or "pause" Translated playing or paused label
toggleMuted "volume-off", "volume-low", or "volume-high" Predicted volume percentage
volumeStep "volume-off", "volume-low", or "volume-high" Predicted volume percentage
toggleSubtitles "captions-on" or "captions-off" Translated captions label
toggleFullscreen "fullscreen" or "exit-fullscreen" Translated fullscreen label
togglePictureInPicture "pip" or "exit-pip" Translated picture-in-picture label

toggleSubtitles is ignored when the player reports that no captions or subtitles are available. Seek actions, toggleControls, playback-rate actions, and custom actions do not open this indicator.

Use actions to allow only some of the supported actions. Omitting it allows all supported actions.

Set the actions attribute to action names separated by commas, whitespace, or both:

<media-status-indicator actions="togglePaused, toggleMuted">
  <media-status-indicator-value></media-status-indicator-value>
</media-status-indicator>

The indicator closes after closeDelay, which defaults to 800 milliseconds. A repeated handled action updates the current value and restarts that close timer without replaying the entry transition. React stops rendering the Root after its close transition. The HTML custom element remains in the document with hidden until the next handled action.

Styling

Attribute Values Description
data-open Present / absent Present while the indicator is open
data-status "play", "pause", "volume-off", "volume-low", "volume-high", "captions-on", "captions-off", "fullscreen", "exit-fullscreen", "pip", or "exit-pip" Predicted status for the handled action
data-starting-style Present / absent Present during the open transition
data-ending-style Present / absent Present during the close transition

Use data-status to select an icon or other visual treatment, and use the transition attributes for entry and exit styles.

media-status-indicator[data-status="play"] {
  color: green;
}

media-status-indicator[data-starting-style],
media-status-indicator[data-ending-style] {
  opacity: 0;
}

Accessibility

StatusIndicator is visual feedback and does not create a live region. Keep every action available through keyboard-operable controls, and pair the player with StatusAnnouncer when state changes should be announced to screen readers. Do not make StatusIndicator.Value a live region.

Examples

Basic Usage

Focus the player, then press K to play or pause, M to mute, F for fullscreen, C for captions, or I for picture-in-picture.

Focus the player · K: play/pause · M: mute · F: fullscreen · C: captions · I: picture-in-picture

<video-player>
  <media-container class="html-status-indicator-basic" tabindex="0">
    <video src="https://stream.mux.com/BV3YZtogl89mg9VcNBhhnHm02Y34zI1nlMuMQfAbl3dM/highest.mp4" autoplay muted playsinline loop>
      <track kind="captions" src="/docs/demos/captions-button/captions.vtt" srclang="en" label="English" />
    </video>
    <p class="html-status-indicator-basic__instructions">
      Focus the player · K: play/pause · M: mute · F: fullscreen · C: captions · I: picture-in-picture
    </p>
    <media-status-indicator
      class="html-status-indicator-basic__indicator"
      actions="togglePaused toggleMuted toggleSubtitles toggleFullscreen togglePictureInPicture"
      aria-hidden="true"
    >
      <media-status-indicator-value class="html-status-indicator-basic__value"></media-status-indicator-value>
    </media-status-indicator>
    <media-hotkey keys="k" action="togglePaused"></media-hotkey>
    <media-hotkey keys="m" action="toggleMuted"></media-hotkey>
    <media-hotkey keys="f" action="toggleFullscreen"></media-hotkey>
    <media-hotkey keys="c" action="toggleSubtitles"></media-hotkey>
    <media-hotkey keys="i" action="togglePictureInPicture"></media-hotkey>
  </media-container>
</video-player>

API Reference

media-status-indicator

Props

PropTypeDefaultDetails
actionsreadonly InputAction[]
closeDelaynumber
labelsPartial<InputIndicatorLabels>

State

State is reflected as data attributes for CSS styling.

PropertyTypeDetails
transitionStartingboolean
transitionEndingboolean
openboolean
generationnumber
statusReturnType<typeof deriveStatus> exten...
labelstring | null
valuestring | null

Data attributes

AttributeTypeDetails
data-open
data-statusReturnType<typeof deriveStatus> exten...
data-starting-style
data-ending-style

media-status-indicator-value