0

我正在使用 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() 上遇到错误;

4

1 回答 1

1

您不能在“加载元数据”事件中进入全屏模式。您必须等待点击/按键事件。

window.onload = function() {
        var vid = document.createElement('video');
        vid.src = "small.mp4";
        document.body.appendChild(vid);
        vid.play();
        vid.addEventListener("click", function() {
            vid.webkitEnterFullscreen();
        });
 };
于 2013-06-13T21:26:48.713 回答