没有导航的Fancybox

时间:2013-07-15 21:06:21

标签: jquery fancybox fancybox-2

我正在尝试在一个页面中使用少量视频。我使用视频组,但我看不到导航。

jQuery(document).ready(function($) {

$(".fancybox-youtube").click(function() {
 $.fancybox({
  'hideOnContentClick': false,
  'autoScale': false,
  'transitionIn': 'none',
  'transitionOut': 'none',
  'width': 680, // or your size
  'height': 495,
  'href': this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
  'type': 'swf',
  'swf': {
    'wmode': 'transparent',
    'allowfullscreen': 'true'
  }
 }); // fancybox
 return false;
}); 

});

我的代码 - http://jsfiddle.net/y39te/1/

我该如何解决这个问题?

0 个答案:

没有答案