YTPlayer工具栏iOS上没有全屏按钮

时间:2015-05-26 10:38:39

标签: javascript html ios youtube-api youtube-iframe-api

我在iOS应用中使用YTPlayer。一切都很好,直到YTPlayer工具栏上的全屏按钮消失,现在我没有看到全屏按钮,YTPlayer without fullscreen button

相反,我有一个视频质量按钮,播放列表按钮和在youtube按钮上播放,这对我来说没什么用处,也是之前没有的。那么如何获得工具栏上的全屏按钮,如果可能的话,如何删除不需要的按钮。我是否应该更改html文件中的任何内容?



<!DOCTYPE html>
<html>
<head>
    <style>
        body { margin: 0; width:100%%; height:100%%; }
        html { width:100%%; height:100%%; }
    </style>
</head>
<body>
    <div id="player"></div>
    <script src="https://www.youtube.com/iframe_api"></script>
    <script>
    var player;
    YT.ready(function() {
             player = new YT.Player('player', %@);
      window.location.href = 'ytplayer://onYouTubeIframeAPIReady';
    });
    function onReady(event) {
        window.location.href = 'ytplayer://onReady?data=' + event.data;
    }
    function onStateChange(event) {
        window.location.href = 'ytplayer://onStateChange?data=' + event.data;
    }

    function onPlaybackQualityChange(event) {
        window.location.href = 'ytplayer://onPlaybackQualityChange?data=' + event.data;
    }
    function onPlayerError(event) {
        window.location.href = 'ytplayer://onError?data=' + event.data;
    }
    </script>
</body>
</html>
&#13;
&#13;
&#13;

提前致谢。

1 个答案:

答案 0 :(得分:0)

没关系。现在可以看到全屏按钮。不知道为什么它消失了,为什么它会回来,认为youtube修改它或什么的。