博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

图片等比例缩放方案

Posted on 2019-01-08 10:23  lee_xiumei  阅读(124)  评论(0)    收藏  举报

export const aspectRatio = (width, height) => {

  height: 0,

  overflow: 'hidden',

  paddingBottom: `${(height / width) * 100}%`,

}

 

padding-bottom 值为百分比时,百分比与其所在元素的父元素的宽度相关。