当前位置: 首页 > Web前端 > HTML5

前端视频

时间:2023-04-05 21:14:39 HTML5

video关于自动播放检测的实用技巧video.play().then(()=>{console.log("autoplay")}).catch((error)=>{console.log("Cannotplayautomatically",error)})如何自动播放并设置静音移动端全屏处理当前页面是否支持画中画画中画?不支持document.pictureInPictureEnabled或disabled为false。如何启用/禁用画中画?openconstopenPip=async()=>{try{letpip=awaitvideo.value?.requestPictureInPicture()}catch(error){console.log(error)}}closedocument.exitPictureInPicture()为什么打不开画中画?需要用户主动操作,需要下载视频的元信息。视频设置disablePictureInPicture后,页面不支持如何禁用画中画?Picture?/***如果是,返回启用画中画的视频*如果不是,返回null*/console.log(document.pictureInPictureElement)