我正试图让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
}
}
});
答案 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,
});