Я пытаюсь создать слайдер контента jQuery, который будет останавливаться при воспроизведении видео с YouTube и возобновляться при остановке видео. Аналогично ползунку на taprootfoundation.org .
player.getPlayerState () в YouTube JavaScript API возвращает статус проигрывателя. Видео, которое не началось, должно возвращать значение -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);
});
});