youtube iframe API不能在ipad和iphone上工作



我试图为幻灯片重新创建这里详细介绍的多个iframe示例。它可以完美地运行在所有浏览器中,包括桌面safari,除了iphone和ipad。

http://codepen.io/lakshminp/pen/mepIB

Js:

var tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
var players = {}
var YT_ready = (function() {
    var onReady_funcs = [],
        api_isReady = false;
    return function(func, b_before) {
        if (func === true) {
            api_isReady = true;
            for (var i = 0; i < onReady_funcs.length; i++) {
                // Removes the first func from the array, and execute func                                                                                                                     
                onReady_funcs.shift()();
            }
    }
        else if (typeof func == "function") {
            if (api_isReady) func();
            else onReady_funcs[b_before ? "unshift" : "push"](func);
        }
    }
})();

function onYouTubeIframeAPIReady() {
  jQuery(window).bind("load", function() {
    YT_ready(true);
  });
}
YT_ready(function() {
        var identifier = "v9d09JLBVRc";
            players[identifier] = new YT.Player(identifier, {
                events: {
                  'onReady': onPlayerReady,
                    "onStateChange": createYTEvent(identifier)
                }
            });
});
function onPlayerReady(event) {
  event.target.playVideo();
}
// Returns a function to enable multiple events                                                                                                                                                
function createYTEvent(identifier) {
    var player = players[identifier]; // Get cached player instance                                                                                                                            
    return function (event) {
      console.log(event.data);
    }
}
HTML:

<div id="yt-container">
  <iframe width="640" height="480" id="v9d09JLBVRc" class="media-youtube-player" src="//www.youtube.com/embed/v9d09JLBVRc?enablejsapi=1&autoplay=0" frameborder="0" allowfullscreen></iframe>
</div>

根据这个

函数和参数,如自动播放,playVideo(), loadVideoById()不能在所有的移动环境下工作

在你的YTReady函数中,你可以动态加载视频,目前这在iOS上是不可能的。

你也可以尝试YouTubeDemoPage并尝试加载另一个id,你会发现这是无法完成的。

相关内容

  • 没有找到相关文章

最新更新