我正在使用fancybox 2并将html内容附加到模态。我转向滚动,现在隐藏了模态溢出的内容。这是模态最大高度的问题吗?我该如何解决这个问题?
我的代码:
$('.fancybox-open').fancybox({
openEffect : 'none',
closeEffect : 'none',
'scrolling' : 'no',
'closeBtn' : true,
afterLoad : function() {
this.content.html();
}
});
答案 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();
}
});
您可以阅读此处记录的完整插件选项: