Fancybox 2 - 停止在画廊中调整大小

时间:2012-01-06 05:48:47

标签: jquery fancybox

我正试图让Fancybox停止调整图库中的图像大小。我有一些需要滚动的更大的图像。这是我目前的fancybox jQuery:

$('.gallery').fancybox({
            padding: 0,
            scrolling: 'yes',

            openEffect : 'elastic',
            openSpeed  : 150,

            prevEffect : 'fade',
            nextEffect : 'none',
            closeEffect : 'elastic',
            closeSpeed : 100,

            closeBtn  : false,
            arrows    : true,
            nextClick : true,

            helpers : { 
                thumbs : {
                    width  : 50,
                    height : 50
                },
                overlay : {
                    opacity : 0.8
                }
            }
        });

2 个答案:

答案 0 :(得分:4)

fitToView设置为false,以便:

$('.gallery').fancybox({

            fitToView: false, // add this

            padding: 0,
            scrolling: 'yes',

            openEffect : 'elastic',
            openSpeed  : 150,

            prevEffect : 'fade',
            nextEffect : 'none',
            closeEffect : 'elastic',
            closeSpeed : 100,

            closeBtn  : false,
            arrows    : true,
            nextClick : true,

            helpers : { 
                thumbs : {
                    width  : 50,
                    height : 50
                },
                overlay : {
                    opacity : 0.8
                }
            }
        });

答案 1 :(得分:0)

autoScale属性适用于我。

$('.gallery').fancybox({
    'autoScale':false,
});