gpt4 book ai didi

jquery - 如何计算图像是横向还是纵向

转载 作者:行者123 更新时间:2023-12-03 22:16:26 25 4
gpt4 key购买 nike

我正在使用 jquery 创建一个图片库。是否有可能使用 jquery 计算图像是横向还是纵向?

感谢您的支持。

最佳答案

您可以简单地比较图像的宽度和高度。

var someImg = $("#someId");
if (someImg.width() > someImg.height()){
//it's a landscape
} else if (someImg.width() < someImg.height()){
//it's a portrait
} else {
//image width and height are equal, therefore it is square.
}

关于jquery - 如何计算图像是横向还是纵向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16891467/

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