PictureInPictureWindow - Web APIs 编辑
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 HTMLVideoElement.requestPictureInPicture()
promise return value.
Properties
The PictureInPictureWindow
interface doesn't inherit any properties.
PictureInPictureWindow.width
Read only- Determines the width of the floating video window.
PictureInPictureWindow.height
Read only- Determines the height of the floating video window.
Methods
The PictureInPictureWindow
interface doesn't inherit any methods.
Events
The PictureInPictureWindow
interface doesn't inherit any events.
PictureInPictureWindow.resize
- Sent to a
PictureInPictureWindow
when the floating video window is resized. The associated event handler isPictureInPictureWindow.onresize
.
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 = function() {
video.requestPictureInPicture().then(pictureInPictureWindow => {
pictureInPictureWindow.onresize = printPipWindowDimensions;
});
};
Specifications
Specification | Status | Comment |
---|---|---|
Picture-in-Picture API | Draft | Initial specification. |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论