微信小程序图片居中显示
#
小程序图片居中显示
图片完整的显示并且置于固定框内正中间
主要代码
let originalWidth = e.detail.width;
let originalHeight = e.detail.height;
var mariginTopSize = 0;
var mariginLeftSize = 0;
let imageSize = ImgUtil.imageZoomWidthUtil(originalWidth, originalHeight, 180);
//按高度180缩放 180像素是根据自己项目的框固定的高度
//如果图片宽度没有大于屏幕宽度
if (imageSize.imageWidth < this.data.screenWidth) {
//向上偏移
imageSize = ImgUtil.imageZoomHeightUtil(originalWidth, originalHeight, this.data.screenWidth);
mariginTopSize = -(imageSize.imageHeight - 180) / 2;
} else {
//向左偏移
mariginLeftSize = -(imageSize.imageWidth - this.data.screenWidth) / 2;
}