我有图像的宽度和假高度,并希望计算与Javascript / jQuery的新比例。 必须使用宽度并计算新的高度。
我希望有人能帮助我。
谢谢!
答案 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获取其高度。