我能够毫无问题地渲染视频,但我还没有发现可以将播放器与fitVids或fluidVids一起使用。我假设这是因为Iframe是由JavaScript生成的,并且不适用于调整大小脚本。有可能的解决方法吗?
var youTubeApi = {
player: '',
init: function(){
// Let's get the API script
$.getScript('//www.youtube.com/iframe_api');
// The API will ask for the player
youTubeApi.createPlayer();
},
createPlayer: function(){
onYouTubeIframeAPIReady = function(){
youTubeApi.player = new YT.Player('player',{
videoId: 'sF4fn82tWmQ',
playerVars:{
autoplay: 1,
autohide: 1
}
})
}
}
}
youTubeApi.init();
谢谢!
答案 0 :(得分:0)
在您加载Youtube iframe后检查是否正在初始化FluidVids。
fluidvids.init();