我在我的 iOS 应用程序中使用 YTPlayer。一切都很好,直到 YTPlayer 工具栏上的全屏按钮消失,现在我看不到全屏按钮,
取而代之的是,我有一个视频质量按钮、播放列表按钮和在 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>
提前致谢。