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>
前もって感謝します。