本文主要是介绍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;
这篇关于rpx和px转换的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!