Youtubeビデオをfancyboxで開くことはできますか。
たとえば、YouTube動画リンクのリストがあります。
<a href="http://www.youtube.com/watch?v=PvbqV8W96D0" class="more">Play</a>
とファンシーボックス:
$("a.more").fancybox({
'titleShow' : false,
'transitionIn' : 'elastic',
'transitionOut' : 'elastic'
});
ビデオごとに新しい埋め込みオブジェクトを作成したくありません。
プラグインや他の方法がありますか?
<script type="text/javascript">
$("a.more").fancybox({
'titleShow' : false,
'transitionIn' : 'elastic',
'transitionOut' : 'elastic',
'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
'type' : 'swf',
'swf' : {'wmode':'transparent','allowfullscreen':'true'}
});
</script>
この方法では、ユーザーjavascriptが有効になっている場合、youtube埋め込みビデオでfancyboxが開き、javascriptが無効になっている場合、動画のyoutubeページが開きます。必要に応じて追加できます
target="_blank"
各リンクに対して、ほとんどのDoctypeでは検証されませんが、fancyboxがそれを選択しない場合、新しいウィンドウでリンクを開きます。
上記のthis
は正しく参照されていないため、コードはhref
の下でthis
を見つけられません。次のように呼び出す必要があります。
$("a.more").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;
});
http://fancybox.net/blog #4で説明したように、上記で複製
ここで回答を使用することから始めましたが、YouTubeの新しいiframe
埋め込みを使用するように変更しました...
$('a.more').on('click', function(event) {
event.preventDefault();
$.fancybox({
'type' : 'iframe',
// hide the related video suggestions and autoplay the video
'href' : this.href.replace(new RegExp('watch\\?v=', 'i'), 'embed/') + '?rel=0&autoplay=1',
'overlayShow' : true,
'centerOnScroll' : true,
'speedIn' : 100,
'speedOut' : 50,
'width' : 640,
'height' : 480
});
});
$("a.more").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', // <--add a comma here
'swf' : {'allowfullscreen':'true'} // <-- flashvars here
});
return false;
});
自動再生機能を追加したい場合。単に交換する
this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
と
this.href = this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '&autoplay=1',
また、vimeoでも同じことができます
this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1'),
と
this.href = this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1') + '&autoplay=1',
これには正規表現があるため、YouTubeのURLをコピーして貼り付けるだけです。クライアントにCMSを使用する場合に最適です。
/*fancybox yt video*/
$(".fancybox-video").click(function() {
$.fancybox({
padding: 0,
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'title' : this.title,
'width' : 795,
'height' : 447,
'href' : this.href.replace(new RegExp("watch.*v=","i"), "v/"),
'type' : 'swf',
'swf' : {
'wmode' : 'transparent',
'allowfullscreen' : 'true'
}
});
return false;
});
アレキサンダー、ありがとう!
そして、YouTubeのフラッシュコンテンツの上のファンシークローズボタンを設定するには、「wmode」を「swf」パラメーターに追加します。
'swf': {'allowfullscreen':'true', 'wmode':'transparent'}