1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > 等比例缩放尺寸怎么算 – CSS – 前端 css让序号在圈里

等比例缩放尺寸怎么算 – CSS – 前端 css让序号在圈里

时间:2020-01-04 11:21:19

相关推荐

等比例缩放尺寸怎么算 – CSS – 前端 css让序号在圈里

等比列计算公式:

百分比缩放

const imgPect = (picture_width, picture_height, default_width, default_height) => {

var widthRatio = default_width / picture_width

var heightRatio = default_height / picture_height

var ratio

widthRatio < heightRatio ? ratio = widthRatio : ratio = heightRatio

var currentImg = { picture_width: parseInt(picture_width * ratio), picture_height: parseInt(picture_height * ratio)}

return currentImg

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。