ファンシーボックスで再生するときに、YouTube の一番下のステータス バーを取り除く方法はありますか? 「controls = "0"」を追加しようとしましたが、下部のバーはクリップの間そのままでした。
また、上隅の「X」ボタンが少し後にフェードアウトする方法はありますか? または、少なくともボタンをビデオボックスから少し離しますか?
HTML:
<a class="fancybox-media" href="http://www.youtube.com/watch?v=sqRPrGeBVL0&autoplay=1" >Vimeo</a>
Javascript:
$("a.fancybox-media").click(function() {
$.fancybox({
'padding' : 0,
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'title' : this.title,
'width' : 680,
'height' : 495,
'autoPlay' :'true',
'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
'type' : 'swf', // <--add a comma here
'swf' : {'allowfullscreen':'true'} // <-- flashvars here
});
return false;
});