我在我的网站上使用photoswipe图库,我将图像关联到图库,现在我想增加默认缩放,但我找不到解决方案,有人帮我吗?谢谢。
答案 0 :(得分:1)
我建议你使用更高分辨率的照片而不是增加变焦。但是如果你仍然需要增加默认缩放,那就是。
在options
对象中定义这两个参数。根据需要编辑下面的4
var options = {
// ...
// Your other options,
// ...
getDoubleTapZoom: function(isMouseClick, item) {
if(isMouseClick) {
return 4; //<---- This 4
} else {
return item.initialZoomLevel < 0.7 ? 4 : 1.33; //<---- 4 here
}
},
maxSpreadZoom: 4 //<---- and this 4 here
};