图片等比例缩放方案
Posted lee-xiumei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图片等比例缩放方案相关的知识,希望对你有一定的参考价值。
export const aspectRatio = (width, height) => {
height: 0,
overflow: ‘hidden‘,
paddingBottom: `${(height / width) * 100}%`,
}
padding-bottom 值为百分比时,百分比与其所在元素的父元素的宽度相关。
以上是关于图片等比例缩放方案的主要内容,如果未能解决你的问题,请参考以下文章