rpx和px转换

通过API wx.getSystemInfoSync()获取值

**// 在 iPhone6 下运行:

var systemInfo = wx.getSystemInfoSync();
console.log(systemInfo.windowWidth); // 输出 375(单位 px)
 
// 在 iPhone6 Plus 下:
var systemInfo = wx.getSystemInfoSync();
console.log(systemInfo.windowWidth); // 输出 414 (单位 px)**

px与rpx之间转换的公式:px = rpx / 750 * wx.getSystemInfoSync().windowWidth;

你可能感兴趣的:(小程序开发问题)