Fancybox溢出被隐藏

时间:2014-01-29 00:56:46

标签: javascript jquery html css fancybox-2

我正在使用fancybox 2并将html内容附加到模态。我转向滚动,现在隐藏了模态溢出的内容。这是模态最大高度的问题吗?我该如何解决这个问题?

我的代码:

$('.fancybox-open').fancybox({
    openEffect  : 'none',
    closeEffect : 'none',
    'scrolling'   : 'no',
    'closeBtn' : true,
    afterLoad   : function() {
        this.content.html();
    }
});

1 个答案:

答案 0 :(得分:0)

您有多种可能的原因导致这种情况发生。

我们需要更多信息以获得明确的答案,但这里有一些可能/可能的原因。

尝试以下几个参数:

$('.fancybox-open').fancybox({
    openEffect  : 'none',
    closeEffect : 'none',
    'scrolling'   : 'no',

    'height' : 1000,           <--- Try these one at a time
    'autoHeight' : true,       <--- Try these one at a time
    'autoResize' : true,       <--- Try these one at a time
    'fitToView' : true,        <--- Try these one at a time

    'closeBtn' : true,
    afterLoad   : function() {
        this.content.html();
    }
});

您可以阅读此处记录的完整插件选项: