如何在微信小程序中获取图片的宽高 ?
首先拿到图片的路径,相对/绝对路径都行,其次通过 wx.getImageInfo
获取到图片的宽高
wx.getImageInfo({
src,
success: function (res) {
console.log(res);
w = res.width;
h = res.height;
}
})
如何在微信小程序中获取手机设备的宽高 ?
wx.getSystemInfoSync().windowWidth;
wx.getSystemInfoSync().windowHeight;
所有评论(0)