我正在使用 popcornjs 加载与来自 youtube 的视频的交互。 当我使用文档中的代码时:
<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: "op!",
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>
它在任何浏览器上看起来都很完美,但在 iPad 上却没有任何显示。 当我用爆米花加载视频但不使用 Youtube 时,它似乎工作正常。
我能做什么?
很遗憾,ipad 不支持 Flash。我们确实在处理 Popcorn 的票证,以切换到他们的 HTML5 API,您可以在此处查看:
希望对您有所帮助, 布雷特
关于ios - Popcorn JS - 在 iPad 或 iOS 设备上通过 Youtube 使用爆米花,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10588070/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |