| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/ja/docs/Web/API/HTMLVideoElement/requestPictureInPicture | [Back] [Original] |
Get to know MDN better
Want more browser support for this feature? Tell us why.
HTMLVideoElement requestPictureInPicture()
requestPictureInPicture()
Promise PictureInPictureWindow
NotSupportedError DOMExceptionT
SecurityError DOMExceptionInvalidStateError DOMExceptionvideo readState HAVE_NOTHING video video disablePictureInPicture true
NotAllowedError DOMExceptionfunction enterPictureInPicture() {
videoElement.requestPictureInPicture().then((pictureInPictureWindow) => {
pictureInPictureWindow.addEventListener(
"resize",
() => onPipWindowResize(),
false,
);
});
}
| Picture-in-Picture # dom-htmlvideoelement-requestpictureinpicture |
HTMLVideoElement| Web Proxy Viewer | New URL | Original Page |