动态计算图片宽高适配
function getImgAutoSize(width, height, new_width) {
let scale = new_width / width; //比例计算
let new_height = height * scale; //自适应高度
return { width: new_width, height: new_height }
}动态计算图片宽高适配
function getImgAutoSize(width, height, new_width) {
let scale = new_width / width; //比例计算
let new_height = height * scale; //自适应高度
return { width: new_width, height: new_height }
}