Open youtube video in Fancybox jquery

前端 未结 6 1758
有刺的猬
有刺的猬 2020-12-02 07:55

Can I open youtube video in fancybox.

I have a list of youtube videos links , for ex:



        
6条回答
  •  鱼传尺愫
    2020-12-02 08:28

    $("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;
    
                }); 
    

提交回复
热议问题