Fancybox 2.1.3没有调整WordPress网站中的图像大小

时间:2013-02-26 14:02:06

标签: wordpress resize fancybox

这让我发疯了:我有这个打开图像的fancybox 2.1.3,但是如果我调整窗口大小,图像就不会调整大小。这很奇怪,因为代码中的一切看起来都很好,如果我使用fancybox打开一个适合的博客文章并且很好地调整大小。只有图片才有效...这里的例子(不是我正在做的网站):

http://www.brunoferraroph.altervista.org/wordpress/trattamenti/

javascript设置:

defaults: {
        padding : 15,
        margin  : 20,

        width     : 800,
        height    : 600,
        minWidth  : 100,
        minHeight : 100,
        maxWidth  : 9999,
        maxHeight : 9999,

        autoSize   : true,
        autoHeight : false,
        autoWidth  : false,

        autoResize  : true,
        autoCenter  : !isTouch,
        fitToView   : true,
        aspectRatio : false,
        topRatio    : 0.5,
        leftRatio   : 0.5,

        scrolling : 'auto', // 'auto', 'yes' or 'no'
        wrapCSS   : '',

fancybox 2.1.4也是如此,css似乎正在工作......请帮忙:(

1 个答案:

答案 0 :(得分:1)

默认情况下,autoSize选项应该将autoHeight和autoWidth设置为true,但您似乎在那里覆盖了它们。尝试将其设置为true!

编辑:发现它!将fitToView设置为true,它可以正常工作。