我正在用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/

10-12 00:58