Fancybox 2 Dynamic Width Based on Content Size

前端 未结 3 793
孤街浪徒
孤街浪徒 2021-01-22 21:54

I\'ve got an IFrame being opened via Fancybox 2 that plays a video:

HTML:



        
3条回答
  •  春和景丽
    2021-01-22 22:41

    add autoSize to :

    $("a.fancybox-video").fancybox({
        scrolling   : 'no', 
        type        : 'iframe',
        autoSize    : true, 
        helpers     : { 
            title: null 
        }
    });
    

    or :

    fitToView  : true,
    

提交回复
热议问题