PictureInPictureWindow
{{APIRef("Picture-in-Picture API")}}
The PictureInPictureWindow interface represents an object able to programmatically obtain the width and height and resize event of the floating video window.
An object with this interface is obtained using the {{domxref("HTMLVideoElement.requestPictureInPicture()")}} promise return value.
{{InheritanceDiagram}}
Instance properties
The PictureInPictureWindow interface doesn’t inherit any properties.
{{domxref("PictureInPictureWindow.width")}}{{ReadOnlyInline}}- : Determines the width of the floating video window.
{{domxref("PictureInPictureWindow.height")}}{{ReadOnlyInline}}- : Determines the height of the floating video window.
Instance methods
The PictureInPictureWindow interface doesn’t inherit any methods.
Events
The PictureInPictureWindow interface doesn’t inherit any events.
{{domxref("PictureInPictureWindow.resize_event", "resize")}}- : Sent to a
PictureInPictureWindowwhen the floating video window is resized.
- : Sent to a
Examples
Given a <button> and a <video>, clicking the button will make the video enter the picture-in-picture mode; we then attach an event to print the floating video window dimensions to the console.
const button = document.querySelector("button");
const video = document.querySelector("video");
function printPipWindowDimensions(evt) {
const pipWindow = evt.target;
console.log(
`The floating window dimensions are: ${pipWindow.width}x${pipWindow.height}px`,
);
// will print:
// The floating window dimensions are: 640x360px
}
button.onclick = () => {
video.requestPictureInPicture().then((pictureInPictureWindow) => {
pictureInPictureWindow.onresize = printPipWindowDimensions;
});
};
Specifications
{{Specifications}}
Browser compatibility
{{Compat}}