我已经通过drupal模块将youtube视频嵌入到网站中(我不确定这是否与此相关)。一切正常,我可以通过javascript与视频互动并完成我需要的一切,但是,全屏不再有效。
以下是我用来嵌入视频的字符串:
orientation.start_id = $('#orientation-player').attr('data-youtube_id');
var params = {allowScriptAccess: 'always'};
var atts = {id: 'orientation-player', wmode: 'opaque'};
swfobject.embedSWF('http://www.youtube.com/v/'+orientation.start_id+'?version=3&enablejsapi=1&playerapiid=orientation-player',
'orientation-player', '854', '480', '8', null, null, params, atts);
答案 0 :(得分:6)
尝试将第2行更改为,
var params = {allowScriptAccess: 'always', allowfullscreen: 'true'};