无法重新设置fancybox 2

时间:2012-01-05 08:12:18

标签: jquery fancybox

我想在加载内容后更改fancybox的高度。我尝试使用$ .fancybox.update()但是它工作。我在加载到fancybox的页面中使用它。

这是我的初始化代码。我正在使用fancybox 2.0.4

 $(document).ready(function() {
$(".modal").fancybox({

    maxWidth    :500,
    maxHeight   : 600,
    minWidth    :500,
    minHeight   : 200,
    fitToView   : false,
    autoSize    : true,
type                : 'iframe',
    padding:1,
     modal:true,
    helpers: { 
        title:null
    }        
});

});

有什么建议让它发挥作用吗?

1 个答案:

答案 0 :(得分:0)

非常感谢Naatan为fancybox2创建了autoSize implementation,它完全符合我的要求。