2012-01-23 2 views
2

drupal 모듈을 통해 웹 사이트에 YouTube 비디오를 삽입했습니다 (여기에 해당되는지 확실하지 않습니다). 모든 것이 잘 작동하고 자바 스크립트를 통해 비디오와 상호 작용할 수 있지만 필요한 모든 작업을 수행 할 수 있습니다. 그러나 전체 화면이 더 이상 작동하지 않습니다. 여기 내장 된 유튜브 비디오가 전체 화면으로 표시되지 않습니다

내가 비디오를 포함하는 사용하고 문자열입니다 :

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); 

답변

6

라인이 변경 시도에를

var params = {allowScriptAccess: 'always', allowfullscreen: 'true'}; 
관련 문제