如何使用Javascript / jQuery计算图像的比例大小?

时间:2013-11-27 08:10:43

标签: javascript jquery image resize image-scaling

我有图像的宽度和假高度,并希望计算与Javascript / jQuery的新比例。 必须使用宽度并计算新的高度。

我希望有人能帮助我。

谢谢!

2 个答案:

答案 0 :(得分:4)

var newWidth = <whatever the new width is>;
var width = $('#imgID').width();
var proportion = newWidth/width;
var newHeight = <existing height> * proportion;

答案 1 :(得分:1)

我使用css width:100%并使用element.clientHeight获取其高度。