色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

等比例縮放尺寸怎么算

錢斌斌2年前15瀏覽0評論

等比例縮放尺寸怎么算?

等比列計算公式:

百分比縮放

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

等比例css,等比例縮放尺寸怎么算