<div class="videoWrapper">
<div id="player"></div>
</div>
<script>
var player;
function onYouTubeIframeAPIReady() {
player = new YT.Player('player', {
playerVars: {
autoplay: 1,
loop: 1,
controls: 0,
showinfo: 0,
autohide: 1,
modestbranding: 1,
vq: 'hd1080'},
videoId: 'VGz0eoTSNZ8',
events: {
'onReady': onPlayerReady
}
});
}
// 3. The API will call this function when the video player is ready.
function onPlayerReady(event) {
event.target.playVideo();
player.mute();
}
</script>
.videoWrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
height: 0;
}
.videoWrapper #player {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
Примечание. Этот параметр имеет ограниченную поддержку в проигрывателе AS3 и при встраивании IFrame для загрузки проигрывателя AS3 или HTML5. В настоящее время параметр loop работает только в проигрывателе AS3, если он используется в сочетании с параметром playlist. Чтобы закольцевать одно видео, установите для параметра loop значение 1, а для параметра playlist укажите тот же идентификатор видео, что и в URL Player API:
<div class="videoWrapper">
<div id="player"></div>
</div>
<script>
var player;
function onYouTubeIframeAPIReady() {
player = new YT.Player('player', {
playerVars: {
autoplay: 1,
controls: 0,
showinfo: 0,
autohide: 1,
modestbranding: 1,
vq: 'hd1080'},
videoId: 'VGz0eoTSNZ8',
events: {
onReady: onPlayerReady,
onStateChange: function(event){
if (event.data == YT.PlayerState.ENDED) {
player.playVideo();
}
}
}
});
}
function onPlayerReady(event) {
player.mute();
}
</script>