Fancybox iframe div的大小不正确

时间:2012-08-18 11:31:17

标签: jquery fancybox

我目前正在开发一个网站,我正在使用fancybox打开包含php联系表单的iframe。

一切正常,但联系人php表格不会使用整个iframe。

我将尺寸设置为800px×600px,联系人php上的div设置为800x600。

当在iframe中显示时,它们以约150x70px的速度滚动 这是我的脚本代码;

$(document).ready(function() {
    $(".fancybox-iframe").fancybox({
        herf        : 'contact/index.html',
        type        : 'iframe',
        margin      : 0,
        padding     : 0,
        width       : 800,
        height      : 600,
        fitToView   : false,
        autoSize    : false,
        closeClick  : 'false',
        openEffect  : 'elastic',
        closeEffect : 'elastic',
        openSpeed   : 'slow'
    });
});

Here is the link

0 个答案:

没有答案