Open youtube video in Fancybox jquery

前端 未结 6 1740
有刺的猬
有刺的猬 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:36

    If you wanna add autoplay function to it. Simply replace

    this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'), 
    

    with

    this.href = this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '&autoplay=1',
    

    also you can do the same with vimeo

    this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1'),
    

    with

    this.href = this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1') + '&autoplay=1',
    

提交回复
热议问题