<standard:video>
AJAX
Data
Forms
Layout
Logic
Navigation
Personalisation
Standard
ATTRIBUTES
EXAMPLES
Templates
Regions
Third Party

<standard:video />

Creates a HTML 5 video player.

Attributes

autoPlay
bool
Auto Play

Should the video automatically play on page load?
autoRepeat
bool
Auto Repeat

Should the video automatically repeat when finished?
controls
bool
Show Controls

Whether or not to show play controls on the video
height
string
Height

Sets the height of the element. The default units are pixels. include the percentage symbol % to user percentage values.
id
string
(Required) Give this control a unique id. Can be accessed in the client DOM (eg, document.getElementById('myid') or in the server DOM using [? $myid ?] or [? $('myid') ?]).
muted
bool
Muted

Sets whether the video is muted or not.
src
string
Source URL of the video file.
width
string
Width

Sets the width of the element. The default units are pixels. include the percentage symbol % to user percentage values.

Examples

Basic Video Display

Add video display on a page

HTML:

<standard:video autoPlay="false" muted="true" controls="true" src="VIDEO_SOURCE_URL" />