ios - Popcorn JS - 在 iPad 或 iOS 设备上通过 Youtube 使用爆米花
<p><p>我正在使用 popcornjs 加载与来自 youtube 的视频的交互。
当我使用文档中的代码时:</p>
<pre><code><html>
<head>
<script src="http://popcornjs.org/code/dist/popcorn-complete.min.js"></script>
<script>
// ensure the web page (DOM) has loaded
document.addEventListener("DOMContentLoaded", function () {
// Create a popcorn instance by calling the Youtube player plugin
var example = Popcorn.youtube(
'#video',
'http://www.youtube.com/watch?v=CxvgCLgwdNk' );
// add a footnote at 2 seconds, and remove it at 6 seconds
example.footnote({
start: 2,
end: 6,
text: "Pop!",
target: "footnotediv"
});
// play the video right away
//example.play(); => commented because you can't autoplay on ios
}, false);
</script>
</head>
<body>
<div id="video" style="width: 360px; height: 300px;" ></div>
<div id="footnotediv"></div>
</body>
</html>
</code></pre>
<p>它在任何浏览器上看起来都很完美,但在 iPad 上却没有任何显示。
当我用爆米花加载视频但不使用 Youtube 时,它似乎工作正常。</p>
<p>我能做什么?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>很遗憾,ipad 不支持 Flash。我们确实在处理 Popcorn 的票证,以切换到他们的 HTML5 API,您可以在此处查看:</p>
<p> <a href="https://webmademovies.lighthouseapp.com/projects/63272/tickets/329-support-youtube-html5-api-playback-engine" rel="noreferrer noopener nofollow">https://webmademovies.lighthouseapp.com/projects/63272/tickets/329-support-youtube-html5-api-playback-engine</a> </p>
<p>希望对您有所帮助,
布雷特</p></p>
<p style="font-size: 20px;">关于ios - Popcorn JS - 在 iPad 或 iOS 设备上通过 Youtube 使用爆米花,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/10588070/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/10588070/
</a>
</p>
页:
[1]