Fancybox3 iframe滚动

时间:2017-03-21 10:28:49

标签: fancybox-3

如果内容高于我的定义,我希望fancybox为iframe添加滚动条,代码belllow不起作用:

$(".class").fancybox({
      iframe : {
        css : {
          width             : "1000px",
          height              : "600px"
                }
            },
      scrolling         : "yes",
      closeClickOutside : false,
      type                  : "iframe",
      afterClose        : function(){location.reload(); return;}
    });

1 个答案:

答案 0 :(得分:0)

$(".class").fancybox({
    iframe : {
            css : {
                width : "1000px",
                height : "600px"
            }
            scrolling : 'yes',
        },
    closeClickOutside : false,
    type : "iframe",
    afterClose : function(){location.reload(); return;}
}); 

您应该将scrolling : 'auto',放在iframe选项参数中。