我正在尝试使用jquery创建一个“翻书”并开始使用我购买的插件。
我定制了JS,以便在调整浏览器大小时将书调整到窗口的100%,并设置最大大小,因为我不希望图像长得比原始大小大。
说了这么多,我一直试图让图像在调整大小时保持纵横比。我在网上环顾四周,但找不到任何可以帮助我的东西。
有没有人对如何做到这一点有任何想法?如果您需要更多信息或说明,请与我们联系。
编辑:
使用JS调整book元素的大小,使其达到图像的最大大小。
当书的大小调整为小于其最大尺寸的任何尺寸时,书的高度和宽度将变为窗口的100%。
我需要一些JS来保持书的宽高比。
EX-窗口调整为非常宽(大宽度)但非常短(小高度)。
目前,由于高度太小,书籍将拉伸并填充非常大的宽度,从而扭曲图像。
如何缩小宽度以补偿较小的高度(反之亦然)?
提前感谢大家!
Here is the Fiddle
#mybook {
margin:0 auto;
}
body {
overflow:hidden;
}
img {
max-height:300px;
max-width:300px;
}
答案 0 :(得分:3)
请看这段代码:http://ericjuden.com/2009/07/jquery-image-resize/
$(document).ready(function() {
$('.story-small img').each(function() {
var maxWidth = 100; // Max width for the image
var maxHeight = 100; // Max height for the image
var ratio = 0; // Used for aspect ratio
var width = $(this).width(); // Current image width
var height = $(this).height(); // Current image height
// Check if the current width is larger than the max
if(width > maxWidth){
ratio = maxWidth / width; // get ratio for scaling image
$(this).css("width", maxWidth); // Set new width
$(this).css("height", height * ratio); // Scale height based on ratio
height = height * ratio; // Reset height to match scaled image
width = width * ratio; // Reset width to match scaled image
}
// Check if current height is larger than max
if(height > maxHeight){
ratio = maxHeight / height; // get ratio for scaling image
$(this).css("height", maxHeight); // Set new height
$(this).css("width", width * ratio); // Scale width based on ratio
width = width * ratio; // Reset width to match scaled image
height = height * ratio; // Reset height to match scaled image
}
});
});
或者你可以用css:
来做<div style="height: 100px">
<img src="http://www.getdigital.de/images/produkte/t4/t4_css_sucks2.jpg"
style="max-height: 100%; max-width: 100%">
</div>
答案 1 :(得分:2)
在你的问题中没有足够的技术信息能够给你一个好的答案,但这通常是一个可以用CSS解决的问题。它不应该需要任何JS / jQuery。
如果设置如下内容,标签会自然保持图像的纵横比:
img {
width: 100%;
height: auto;
}
或者,您可以将图像设置为背景图像并使用CSS属性
.image {
background-size: contain;
}
确保图像使用大部分可用的宽度和高度。
答案 2 :(得分:1)
正如我所看到的,您正在使用JavaScript调整图像的容器div。因此,您可以设置以下CSS以使图像始终适合该div并保持其纵横比。
img {
max-height:100%;
max-width:100%;
}
这是fiddle。