1

一旦我在我的幻想箱中播放的 youtube 视频结束,我就会尝试触发一个事件。

所以一旦视频结束,我可以自动关闭fancybox。

我有最后一个 fancybox 版本,我在 youtube API 上,坚持使用示例,但似乎 ytplayer 对象是“未定义的”,我无法使其正常工作。

我在互联网上阅读了很多东西,包括这个,这似乎很好:当 youtube 视频 id 完成时,如何让 fancybox 自动关闭?

这是我正在使用的代码:JsFiddle

$(".fancybox").fancybox({
    'openEffect'  : 'none',
    'closeEffect' : 'none',
    'overlayOpacity' : 0.7,
    'helpers' : {
        media : {}
    },
    'afterLoad' :   function() {
        function onYouTubePlayerReady(playerId) {
            //alert(playerId);
            //alert(document.getElementById("myytplayer"));
            ytplayer = document.getElementById("myytplayer");
            ytplayer.addEventListener("onStateChange", "onytplayerStateChange");
        }

        function onytplayerStateChange(newState) {
            //alert("Player's new state: " + newState);
            if (newState == 0){
                $.fancybox.close(true);
            }
        }
    }
});

// Launch fancyBox on first element
$(".fancybox").eq(0).trigger('click');

如果有人让这个工作,那就太棒了!我只是在完成后关闭fancybox的视频!

非常感谢

4

2 回答 2

2

请参阅以下工作代码(您应该使用 fancybox 的第 2 版。)

jsfiddle:http: //jsfiddle.net/c5h9U/2/

// Fires whenever a player has finished loading
function onPlayerReady(event) {
    event.target.playVideo();
}

// Fires when the player's state changes.
function onPlayerStateChange(event) {
    // Go to the next video after the current one is finished playing
    if (event.data === 0) {
        $.fancybox.close();
    }
}

// The API will call this function when the page has finished downloading the JavaScript for the player API
function onYouTubePlayerAPIReady() {

    // Initialise the fancyBox after the DOM is loaded
    $(document).ready(function() {
        $(".fancybox")
            .attr('rel', 'gallery')
            .fancybox({
                openEffect  : 'none',
                closeEffect : 'none',
                nextEffect  : 'none',
                prevEffect  : 'none',
                padding     : 0,
                margin      : 50,
                beforeShow  : function() {
                    // Find the iframe ID
                    var id = $.fancybox.inner.find('iframe').attr('id');

                    // Create video player object and add event listeners
                    var player = new YT.Player(id, {
                        events: {
                            'onReady': onPlayerReady,
                            'onStateChange': onPlayerStateChange
                        }
                    });
                }
            });
    // Launch fancyBox on first element
    $(".fancybox").eq(0).trigger('click');
    });

}
于 2013-02-14T19:17:58.967 回答
0

可能的原因:

  • “本地”测试(不通过 h​​ttp://localhost加载文件)
  • 将 Embed API(在其中声明 iframe)与 iframe API(在其中声明 DIV 并加载一些 JS)混合。这些事件似乎只适用于后者。
  • DIV 上的 ID 与新 YT.Player(...) 调用上的 ID 不匹配
于 2018-05-09T19:42:59.347 回答