NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
[TOC] ## 概述 画中画API ## demo ``` <body> <video src="https://mdn.github.io/dom-examples/picture-in-picture/assets/bigbuckbunny.mp4"></video> <button>提交</button> <script> const button = document.querySelector("button"); const video = document.querySelector("video"); button.onclick = function() { if (document.pictureInPictureElement) { document.exitPictureInPicture(); } else { if (document.pictureInPictureEnabled) { video.requestPictureInPicture(); } } }; </script> </body> ```