是否可以在YouTube iFrame API中使用fitVids或fluidVids?

时间:2014-05-15 21:04:13

标签: javascript iframe youtube

我能够毫无问题地渲染视频,但我还没有发现可以将播放器与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();

谢谢!

1 个答案:

答案 0 :(得分:0)

在您加载Youtube iframe后检查是否正在初始化FluidVids。

fluidvids.init();