Chrome のデスクトップ バージョンで表示すると、Youtube ビデオがモーダル ウィンドウに表示されません。モーダル ウィンドウはポップアップしますが、YouTube ビデオはポップアップしません。
https://animalhealth.pfizer.com/sites/pahweb/US/EN/Products/Pages/ClarifideStories.aspx
Windows7 の IE と Firefox で動作し、Android ICS と iOS6 iPad の Chrome で動作します。
シェアポイントサイトにあります
しかし、デスクトップに保存されたバージョンを開くと、Chrome で正常に動作します。
私はjquery fancyboxを使用しています
呼び方
<a class="iframe" href="http://www.youtube.com/watch? v=nGAyZSFDYh0&feature=player_embedded#at=41" style=" float: left;">
javascript
<script type="text/javascript">
$(".iframe").click(function() {
$.fancybox({
'padding' : 0,
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'title' : this.title,
'width' : 680,
'height' : 495,
'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
'type' : 'swf',
'swf' : {
'wmode' : 'transparent',
'allowfullscreen' : 'true'
}
});
return false;
});
</script>