我正在根据当前视口大小调整 JavaScript 中的图像大小。没有媒体查询和其他类似的东西,一直是 JS,也没有元素的静态大小。
所以基本上它看起来像这样:
var computedHeight = viewport.height * someRatio;
var image = goog.dom.createDom('img', {
'src': 'the.link.to.the.image',
'height': computedHeight + 'px',
'width': 'auto'
};