video
Video contains the location and size of a video to play during a step.
Key | Description | Format | Cardinality |
|---|---|---|---|
source | Location of the video to display | URL | 1 |
width | Optional video width to apply. | number (-1) | 0..1 |
height | Optional video height to apply | number (-1) | 0..1 |
fullscreen | Indicates if video should be displayed full screen or as part of page. | boolean (false) | 0..1 |
autoPlay | Option to control auto play of video. | boolean (true) | 0..1 |
controls | Option to control whether or not video controls are visible. | boolean (false) | 0..1 |
muted | Option to enable sound of video. | boolean (true) | 0..1 |
loop | Option to disable video loop. | boolean (true) | 0..1 |
Example 40. Example
<video width="640" height="480">
some-video.mp4
</video>
<video fullscreen="true" muted="true">
some-video.mp4
</video>
See also