我想按照以下规则使用 CSS 缩放图像:
if (containerWidth/containerHeight >=imgWidth/imgHeight) --> img { width: 100% }
if (containerWidth/containerHeight < imgWidth/imgHeight) --> img { height: 100% }
这个想法是使用 CSS(没有 javascript)使用按比例缩放的图像完全覆盖容器。
期望的结果:http: //jsfiddle.net/pu76s/6/