html 5视频,当用户进入当前网页时自动以全屏模式打开

html 5 video to automatically open in fullscreen mode when user enter the current webpage

本文关键字:模式 网页 视频 用户 html      更新时间:2023-09-26
  1. 首先,我创建了一个网页,在这个网页中有一个链接到的按钮html5视频播放器页面(这是另一个页面(
  2. 然后,我想实现当点击按钮时页面(html5视频播放器页面(可以自动全屏显示。

    我希望它在IPhone中运行

我尝试使用代码

window.load=function(){
 myVideo=document.getElementById('video')[0];
 if(!myVideo.webkitDisplayingFullscreen){
    goFullscreen();
 }
 function goFullScreen(){ myVideo.webkitEnterFullscreen();}
}

铬说:未捕获的InvalidStateError:无法执行"webkitEnterFullscreen"在"HTMLVideoElement"上:此元素只能在中进入全屏模式对用户手势的响应

那么有没有其他的解决方案可以自动进入全屏模式呢??

你可以像我的例子一样,制作一个视频作为页面的背景,检查fiddle

http://jsfiddle.net/N4Lbp/4/

全屏显示:https://jsfiddle.net/N4Lbp/4/embedded/result/

HTML:

<video autoplay loop poster="http://peach.blender.org/wp-content/uploads/bbb-splash.png" id="video_bg">
<source src="http://download.blender.org/peach/bigbuckbunny_movies/big_buck_bunny_720p_stereo.ogg" type="video/ogg">
<source src="http://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_320x180.mp4" type="video/mp4">
</video>

CSS:

*, *:after, *:before {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
html, body {
    height: 100%;
}
#video_bg {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -100;
    background: url(http://peach.blender.org/wp-content/uploads/bbb-splash.png) no-repeat;
    background-size: cover;
}