我有2个视频标签。如何显示包含两个视频的单个全屏模式(例如,视频聊天,我想看到自己的相机,同时我的朋友)?
答案 0 :(得分:1)
我不认为有一种方法可以像现在这样使用全屏模式。
您可以将元素设置为全屏,例如包装两个视频的容器。 Chrome 15,Firefox 10,Safari 5.1,IE 10支持。
MDN reference to the fullscreen API
您可以在浏览器中填写您的两个视频,例如
#video1, #video2 {
width: 50%;
height: 100vh;
float:left;
}
并且某处有一条消息说"将您的浏览器设置为全屏以获得更好的体验" 或者有一个按钮可以切换几乎全屏模式。
<script type="text/javascript">
window.onload = maxWindow;
function maxWindow() {
window.moveTo(0, 0);
if (document.all) {
top.window.resizeTo(screen.availWidth, screen.availHeight);
}
else if (document.layers || document.getElementById) {
if (top.window.outerHeight < screen.availHeight || top.window.outerWidth < screen.availWidth) {
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
}
</script>
的代码