2

我想使用 panzoom.js。我的图像大小大于容器。我需要让它在默认视图下适合容器。

<div class="container">
    <img id="panzoom" src="http://blog.millermedeiros.com/wp-content/uploads/2010/04/awesome_tiger.svg" width="900" height="900">
</div>

这里是jsfiddle

http://jsfiddle.net/Vipin/qam85n47/

请帮我得到它。

我尝试过使用“startTransform”值。但我需要它动态。

它应该是动态计算的。

图像和容器大小可能会更改

4

2 回答 2

2

尝试这个:

$(function(){
    //get parent width height
    var w = $(".container").width();
    var h = $(".container").height();
    //set parent width height to panzoom element
    $("#panzoom").width(w)
    $("#panzoom").height(h)
    $("#panzoom").panzoom();
});

http://jsfiddle.net/cyril123/vfqdnm8d/2/

于 2015-06-24T08:56:19.273 回答
1

您可能希望以这种方式处理它:

<div class="container">
    <img width="900" height="900" id="panzoom" src="http://blog.millermedeiros.com/wp-content/uploads/2010/04/awesome_tiger.svg" />
</div>

.container img {
    width: 100% !important;
    height: 100% !important;
}

将图像宽度设置为100%, dynamic 并考虑图像大小和容器大小的变化

https://jsfiddle.net/qam85n47/11/

于 2015-06-24T09:18:33.340 回答