Picture-in-Picture API
The Picture-in-Picture API allow websites to create a floating video window always on top of other windows so that users may continue consuming media while they interact with other content sites, or applications on their device.
Interfaces
- PictureInPictureWindow
-  Represents the floating video window; contains widthandheightproperties, and anonresizeevent handler property.
Methods
The Picture-in-Picture API adds methods to the HTMLVideoElement and Document interfaces to allow toggling of the floating video window.
Methods on the HTMLVideoElement interface
- HTMLVideoElement.requestPictureInPicture()
-  Requests that the user agent enters the video into picture-in-picture mode 
Methods on the Document interface
- Document.exitPictureInPicture()
-  Requests that the user agent returns the element in picture-in-picture mode back into its original box. 
Properties
The Picture-in-Picture API augments the HTMLVideoElement, Document, and ShadowRoot interfaces with properties that can be used to determine if the floating video window mode is supported and available, if picture-in-picture mode is currently active, and which video is floating.
Properties on the HTMLVideoElement interface
- HTMLVideoElement.autoPictureInPicture
-  The autoPictureInPictureproperty will automatically enter and leave the picture-in-picture mode for a video element when the user switches tab and/or applications.
- HTMLVideoElement.disablePictureInPicture
-  The disablePictureInPictureproperty will provide a hint to the user agent to not suggest the picture-in-picture to users or to request it automatically.
Properties on the Document interface
- Document.pictureInPictureEnabled
-  The pictureInPictureEnabledproperty tells you whether or not it is possible to engage picture-in-picture mode. This isfalseif picture-in-picture mode is not available for any reason (e.g. the"picture-in-picture"feature has been disallowed, or picture-in-picture mode is not supported).
Properties on the Document or ShadowRoot interfaces
- 
Document.pictureInPictureElement/ShadowRoot.pictureInPictureElement
-  The pictureInPictureElementproperty tells you whichElementis currently being displayed in the floating window (or in the shadow DOM). If this isnull, the document (or shadow DOM) has no node currently in picture-in-picture mode.
Events
The Picture-in-Picture API defines three events, which can be used to detect when picture-in-picture mode is toggled and when the floating video window is resized.
- enterpictureinpicture
-  Sent to a HTMLVideoElementwhen it enters picture-in-picture mode. The associated event handler isHTMLVideoElement.onenterpictureinpicture
- leavepictureinpicture
-  Sent to a HTMLVideoElementwhen it leaves picture-in-picture mode. The associated event handler isHTMLVideoElement.onleavepictureinpicture
- resize
-  Sent to a PictureInPictureWindowwhen it changes size. The associated event handler isPictureInPictureWindow.onresize
Controlling styling
The :picture-in-picture CSS pseudo-class matches the video element currently in picture-in-picture mode, allowing you to configure your stylesheets to automatically adjust the size, style, or layout of content when a video switches back and forth between picture-in-picture and traditional presentation modes.
Controlling access
The availability of picture-in-picture mode can be controlled using Feature Policy. The full-screen mode feature is identified by the string "picture-in-picture", with a default allow-list value of "self", meaning that picture-in-picture mode is permitted in top-level document contexts, as well as to nested browsing contexts loaded from the same origin as the top-most document.
See Using Feature Policy to learn more about using Feature Policy to control access to an API.
Examples
In this example, a video is presented in a web page. Clicking the button below lets the user toggle the floating video window.
Toggling picture-in-picture mode
This code is called by a click handler when the user clicks the "Toggle Picture-in-Picture" button:
function togglePictureInPicture() { if (document.pictureInPictureElement) { document.exitPictureInPicture(); } else { if (document.pictureInPictureEnabled) { video.requestPictureInPicture(); } } }
This block starts by looking at the value of the document's pictureInPictureElement attribute. If the value is null, no video is in the floating window. so we can request a video to enter the picture-in-picture mode; otherwise, it's the element that's currently in picture-in-picture mode. Switching to picture-in-picture mode is done by calling HTMLVideoElement.requestPictureInPicture() on the <video> element.
If a video is in the floating window (pictureInPictureElement is not null), we call exitPictureInPicture() on the document to bring the video back into its initial box.
Specifications
| Specification | 
|---|
| Picture-in-Picture | 
Browser compatibility
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
| Picture-in-Picture_API | 69 | 79 | No | No | 56 | 13.1 | No | No | No | No | 13.4 | No | 
| height | 69 | 79 | No | No | 56 | 13.1 | No | No | No | No | 13.4 | No | 
| onresize | 69 | 79 | No | No | 56 | 13.1 | No | No | No | No | 13.4 | No | 
| resize_event | 69 | 79 | No | No | 56 | 13.1 | No | No | No | No | 13.4 | No | 
| width | 69 | 79 | No | No | 56 | 13.1 | No | No | No | No | 13.4 | No | 
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
| Picture-in-Picture_API | 69 | 79 | No | No | 56 | 13.1 | No | No | No | No | 13.4 | No | 
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
| Picture-in-Picture_API | 69 | 79 | No | No | 56 | 13.1 | No | No | No | No | 13.4 | No | 
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
| Picture-in-Picture_API | 69 | 79 | No | No | 56 | 13.1 | No | No | No | No | 13.4 | No | 
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
| Picture-in-Picture_API | 69 | 79 | No | No | 56 | 13.1 | No | No | No | No | 13.4 | No | 
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
| Picture-in-Picture_API | No | No | No | No | No | 13.1 | No | No | No | No | 13.4 | No | 
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
| Picture-in-Picture_API | 69 | 79 | No | No | 56 | 13.1 | No | No | No | No | 13.4 | No | 
BCD tables only load in the browser
HTMLVideoElement.autoPictureInPicture
BCD tables only load in the browser
HTMLVideoElement.disablePictureInPicture
BCD tables only load in the browser
Document.pictureInPictureEnabled
BCD tables only load in the browser
Document.exitPictureInPicture
BCD tables only load in the browser
Document.pictureInPictureElement
BCD tables only load in the browser
PictureInPictureWindow
BCD tables only load in the browser
See also
- HTMLVideoElement.requestPictureInPicture()
- HTMLVideoElement.autoPictureInPicture
- HTMLVideoElement.disablePictureInPicture
- Document.pictureInPictureEnabled
- Document.exitPictureInPicture()
- Document.pictureInPictureElement
- :picture-in-picture
    © 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
    https://developer.mozilla.org/en-US/docs/Web/API/Picture-in-Picture_API