我正在使用Chrome,我的HTML是
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
window.onload = function() {
var vid = document.createElement('video');
vid.src = "small.mp4";
document.body.appendChild(vid);
vid.addEventListener("loadedmetadata", function() {
vid.webkitEnterFullscreen();
});
};
</script>
</head>
<body>
</body>
</html>
我在vid.webkitEnterFullscreen();
上收到错误答案 0 :(得分:1)
您无权在'loadedmetadata'事件中输入全屏。你必须等待点击/按键事件。
window.onload = function() {
var vid = document.createElement('video');
vid.src = "small.mp4";
document.body.appendChild(vid);
vid.play();
vid.addEventListener("click", function() {
vid.webkitEnterFullscreen();
});
};