<!DOCTYPE html>
<html>
<head>
<meta charset="gb2312" />
<title></title>
</head>
<body>
<video id="video" src="http://vjs.zencdn.net/v/oceans.mp4" controls="controls" autoplay height="100%" width="100%">您的浏览器不支持。</video>
<button type="button" style="text-align: center;" onclick="launchFullScreen(document.getElementById('video'))">全屏幕播放</button>
</body>
<script type="text/javascript">
//全屏幕播放
function launchFullScreen(element)
{
if(element.requestFullScreen)
{
element.requestFullScreen();
}
else if(element.mozRequestFullScreen)
{
element.mozRequestFullScreen();
}
else if(element.webkitRequestFullScreen)
{
element.webkitRequestFullScreen();
}
}
</script>
</html>
只需要将meta 标签 charset设置成gb2312 即可
5万+

被折叠的 条评论
为什么被折叠?



