gpt4 book ai didi

javascript - 在 jQuery 中更改图像的尺寸

转载 作者:搜寻专家 更新时间:2023-10-31 22:22:37 25 4
gpt4 key购买 nike

有没有办法在不影响 jQuery 图像质量的情况下改变(变大)图像的大小?

最佳答案

这只是调整大小,但您不能在不损失质量的情况下调整它们的大小。

var max_size = 200;

$("img").each(function(i) {
if ($(this).height() > $(this).width()) {
var h = max_size;
var w = Math.ceil($(this).width() / $(this).height() * max_size);
}
else {
var w = max_size;
var h = Math.ceil($(this).height() / $(this).width() * max_size);
}

$(this).css({ height: h, width: w });

});

更多例子:

关于javascript - 在 jQuery 中更改图像的尺寸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8847763/

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