我有一个脚本,它使用这个函数来调整图像 onLoad 和 onResize:
/**
* Calculates the display width of an image depending on its display height when it is resized.
* @param displayHeight the resized height of the image
* @param originalHeight the original height of the image
* @param originalWidth the original width of the image
* @return the display width
*/
function getDisplayWidth(displayHeight, originalHeight, originalWidth){
var ratio = originalHeight/displayHeight,
res = Math.round(originalWidth/ratio) || 1000;
return res;
}
.. 但我不希望图像高度超过 800px,事实上它甚至可以固定为 800×530px 大小。我试图返回一个固定值,res
但它似乎不起作用。
谢谢!