Fancybox - Updating size of fancybox with Iframe content?

后端 未结 4 915
难免孤独
难免孤独 2020-12-17 02:02

On my site I open up a fancybox containing IFRAME content. Is it possible to update the size of the fancybox when a link is clicked within it?

For example, I have it

4条回答
  •  甜味超标
    2020-12-17 02:42

    For those who might come here using Fancybox 2:

    This is the code that worked for me

    $(".iframe").fancybox({
                        autoSize: false,
                        autoDimensions: false,
                        width: 630,
                        height: 425,
                        fitToView: false,
                        padding: 0,
                        title: this.title,
                        href: $(this).attr('href'),
                        type: 'iframe'
                    });
    

提交回复
热议问题