这就是我目前所拥有的:
<div id="container" style="width:400px;height:400px;overflow:hidden">
<img id="panzoom" src="http://uploadpie.com/QBTlw">
</div>
$(document).ready(function(){
$("#panzoom").panzoom({
increment: 0.1,
rangeStep: 0.1,
minScale: 1,
duration: 200,
exponential: true,
panOnlyWhenZoomed: false,
$zoomIn: $(".controls").find(".zoom-in"),
$zoomOut: $(".controls").find(".zoom-out"),
$zoomRange: $(".controls").find(".zoom-range"),
contain: 'automatic',
onPan : function ()
{
}
});
});
https://jsfiddle.net/7yhjwLhf/6/
如果我将图像向下拖动,图像不会在容器顶部“停止”。我可以把它拉得更远。很难找到合适的词来形容它。
这是两个屏幕截图:
对于任何帮助,我将非常感激!