The HTMLVideoElement
interface's read-only videoHeight
property indicates the intrinsic height of the video, expressed in CSS pixels. In simple terms, this is the height of the media in its natural size.
The HTMLVideoElement
interface's read-only videoHeight
property indicates the intrinsic height of the video, expressed in CSS pixels. In simple terms, this is the height of the media in its natural size.
An integer value specifying the intrinsic height of the video in CSS pixels. If the element's readyState
is HTMLMediaElement.HAVE_NOTHING
, then the value of this property is 0, because neither video nor poster frame size information is yet available.
A user agent calculates the intrinsic width and height of the element's media by starting with the media's raw pixel width and height, then taking into account factors including:
If the element is currently displaying the poster frame rather than rendered video, the poster frame's intrinsic size is considered to be the size of the <video>
element.
If at any time the intrinsic size of the media changes and the element's readyState
isn't HAVE_NOTHING
, a resize
event will be sent to the <video>
element. This can happen when the element switches from displaying the poster frame to displaying video content, or when the displayed video track changes.
This example creates a handler for the resize
event that resizes the <video>
element to match the intrinsic size of its contents.
js
let v = document.getElementById("myVideo"); v.addEventListener( "resize", (ev) => { let w = v.videoWidth; let h = v.videoHeight; if (w && h) { v.style.width = w; v.style.height = h; } }, false, );
Note that this only applies the change if both the videoWidth
and the videoHeight
are non-zero. This avoids applying invalid changes when there's no true information available yet for dimensions.
Specification |
---|
HTML Standard # dom-video-videoheight-dev |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
videoHeight |
3 | 12 | 3.5 | 9 | 10.5 | 3.1 | ≤37 | 18 | 4 | 11 | 3 | 1.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLVideoElement/videoHeight