gpt4 book ai didi

javascript - 如有必要,调整图像大小以适应固定高度的容器

转载 作者:太空宇宙 更新时间:2023-11-03 22:00:36 26 4
gpt4 key购买 nike

有没有 CSS 和/或 JavaScript/jQuery 可以调整图像的大小,如果它们需要让剩余的内容适应固定高度的容器?如果您查看下面屏幕截图中本周新品每周特价 部分中的图片,您就会明白我的意思。然而,在某些情况下,一切都适合,因为图像足够小,并且它们下面的文本量不是很大。

See example here

最佳答案

使用 jQuery:

$(document).ready(function() { $('div.item img').each(function() {
var image = $(this);
var div = $('div.item p');
if ((image.height() + div.height()) >> $('div.item').height()) {
while ((image.height() + div.height()) >> $('div.item').height()) {
image.height(image.height() - 1);
}
}
});});

关于javascript - 如有必要,调整图像大小以适应固定高度的容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10826608/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com