Dart API Referencedart:htmlVideoElement

VideoElement Interface

DOM video objects expose the HTMLVideoElement interface, which provides special properties (beyond the regular element object and HTMLMediaElement interfaces they also have available to them by inheritance) for manipulating video objects.

Extends

MediaElement

Constructors

Code new VideoElement() #

VideoElement();

Methods

Code void webkitEnterFullScreen() #

void webkitEnterFullScreen();

Code void webkitEnterFullscreen() #

void webkitEnterFullscreen();

Code void webkitExitFullScreen() #

void webkitExitFullScreen();

Code void webkitExitFullscreen() #

void webkitExitFullscreen();

Fields

Code int height #

Reflects the height HTML attribute, which specifies the height of the display area, in CSS pixels.
int height;

Code String poster #

Reflects the poster HTML attribute, which specifies an image to show while no video data is available.
String poster;

Code final int videoHeight #

The intrinsic height of the resource in CSS pixels, taking into account the dimensions, aspect ratio, clean aperture, resolution, and so forth, as defined for the format used by the resource. If the element's ready state is HAVE_NOTHING, the value is 0.
final int videoHeight;

Code final int videoWidth #

The intrinsic width of the resource in CSS pixels, taking into account the dimensions, aspect ratio, clean aperture, resolution, and so forth, as defined for the format used by the resource. If the element's ready state is HAVE_NOTHING, the value is 0.
final int videoWidth;

Code final int webkitDecodedFrameCount #

final int webkitDecodedFrameCount;

Code final bool webkitDisplayingFullscreen #

final bool webkitDisplayingFullscreen;

Code final int webkitDroppedFrameCount #

final int webkitDroppedFrameCount;

Code final bool webkitSupportsFullscreen #

final bool webkitSupportsFullscreen;

Code int width #

Reflects the width  HTML attribute, which specifies the width of the display area, in CSS pixels.
int width;

This page includes content from the Mozilla Foundation that is graciously licensed under a Creative Commons: Attribution-Sharealike license. Mozilla has no other association with Dart or dartlang.org. We encourage you to improve the web by contributing to The Mozilla Developer Network.