Video

Start playing videos as they are shown or enter the viewport.

Video

Start playing videos as they are shown or enter the viewport.

The Video component offers two advanced functions for videos. First, it allows you to pause a video whenever it’s hidden with CSS and resume playing once it becomes visible again. In addition, the video can pause when it’s outside the viewport and start playing when entering it.

Secondly, it allows you to mute YouTube and Vimeo videos, which is often needed if they are used as the background of a section.

For example, the Slideshow, Lightbox and Cover components inherit and make use of both functions.


Usage

To apply this component, add the uk-video attribute to a <video> element. The video will be paused whenever it’s hidden with CSS and resume once it becomes visible again.

<video src="" width="" height="" uk-video></video>

Autoplay inview

To play a video when it enters the viewport and pause it again when it leaves the viewport, just add the uk-video="autoplay: inview" attribute to a <video> element.

<video src="" width="" height="" uk-video="autoplay: inview"></video>

Automute YouTube or Vimeo

To mute YouTube or Vimeo videos by default, add the uk-video="automute: true" attribute to the <iframe> element.

<iframe src="" width="" height="" uk-video="automute: true"></iframe>

Component options

The table below lists the available settings of the uk-video attribute. Learn more

OptionValueDefaultDescription
autoplayBoolean, StringtrueThe video automatically plays/pauses as it’s visible/hidden on the page. A value of inview will delay loading the video and play/pause the video as it enters/leaves the viewport.
automuteBooleanfalseAutomatically mute YouTube or Vimeo videos.

autoplay is the Primary option, and its key may be omitted if it’s the only option in the attribute value.


JavaScript

Learn more about JavaScript components.

Initialization

UIkit.video(element, options);