首页 > 其他 > 详细

图片等比例缩放方案

时间:2019-01-08 10:38:34      阅读:169      评论:0      收藏:0      [点我收藏+]

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

  height: 0,

  overflow: ‘hidden‘,

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

}

 

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

  

图片等比例缩放方案

原文:https://www.cnblogs.com/lee-xiumei/p/10237423.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!