Остановите слайдер контента jQuery при воспроизведении видео на YouTube
Я пытаюсь создать слайдер контента jQuery, который будет останавливаться при воспроизведении видео с YouTube и возобновляться при остановке видео. Аналогично слайдеру на http://www.taprootfoundation.org/.
player.getPlayerState() в JavaScript API YouTube возвращает статус игрока. Видео, которое не началось, должно возвращать значение -1.
Мой скрипт ниже использует return false; остановить слайд-шоу, если getPlayerState() возвращает любое значение, кроме -1. Убрав нижний блок в приведенном ниже коде (за которым следует // обнаружение воспроизведения видео с YouTube), он работает нормально, но в настоящее время "return false;" запускается независимо от значения getPlayerState().
Я использовал swfobject для встраивания проигрывателя, как рекомендовано в API JavaScript YouTube. Вот скриншот, показывающий HTML-код встроенного проигрывателя.
Я должен неправильно вызывать.getPlayerState(), но я не уверен, как это исправить.
$(document).ready(function(){
//initial setup
//adds class "last" to last link-tab item
$('.link-tab:last').addClass('last');
//moves summary elements down out of view
$('.rotate-image > div').children('.summary').css({bottom:-150});
//initial variables
var captionAnimationTime = 300;
var captionPauseTime = 4800;
var slideTime = 6000;
//detect playing YouTube video
/* window.setTimeout(function(){
video = document.getElementById("boundless-playground-video");
}
, captionAnimationTime);
*/
//main function
slideSwitch = function(){
var $active = $('.rotate-image > div.active');
if ($active.length == 0) $active = $('.rotate-image > div:last');
var $next = $active.next().length ? $active.next() : $('.rotate-image > div:first');
//sets indexCurrent variable as the index of the next active banner item in the slideshow
var indexCurrent = $next.prevAll().length;
//removes "active" class from link-tab items that already have it
$('.link-tab.active').removeClass('active');
//gives class "active" to next link-tab item
$('.link-tab').eq(indexCurrent).addClass('active');
$active.addClass('last-active');
//function to slide down the caption
captionDown = function(){
$next.children('.summary').animate({bottom:-150}, captionAnimationTime);
}
$next.css({opacity:0.0})
.addClass('active')
.animate({opacity: 1.0}, 700, function(){
//remove classes from the previously active item
$active.removeClass('active last-active');
//animates slide of summary element
$next.children('.summary').animate({bottom: 0}, captionAnimationTime);
window.setTimeout(captionDown, captionPauseTime);
});
//detect playing YouTube video - currently stopping regardless of player state
video = document.getElementById("boundless-playground-video");
if(video.getPlayerState() != -1){
return false;
}
};
//run the function once on document ready to show first slide
slideSwitch();
$(function(){
setInterval( "slideSwitch()", slideTime);
});
});
1 ответ
Разрешил это после большого растягивания волос. При размещении вызова API YouTube внутри
jQuery $(document).ready(function(){
});
То, что я сделал, это поместил упомянутый вызов API YouTube в верхнюю часть документа jQuery.
//playerState variable shows status of YouTube video.
//see http://code.google.com/apis/youtube/youtube_player_demo.html
//currently hardcoded with id of video
function onYouTubePlayerReady(){
ytplayer = document.getElementById('boundless-playground-video');
ytplayer.addEventListener('onStateChange','onytplayerStateChange');
}
function onytplayerStateChange(newState) {
playerState = newState;
}
$(document).ready(function(){
//insert other stuff here
if (typeof (playerState) == 'undefined'){
window.playerState = 5;
}
alert(window.playerState);
});