单位转换问题?
https://developers.weixin.qq.com/miniprogram/dev/framework/view/selector.html
这里获取到的数值单位是什么?
怎么转换成rpx?
5 回复
var res = wx.getSystemInfoSync().windowWidth;
var scale = (750 / 2) / (w / 2);
//以宽度750px设计稿做宽度的自适应
real = Math.floor(res / scale);