首先获取系统手机屏幕的宽度系统信息的概念 | uni-app官网,然后根据公式转换 rpx = 750*元素 B 在设计稿上的宽度为 多少px/手机屏幕的宽度 详见:CSS 支持 | uni-app官网
如下为把宽度为1px的转成对应手机型号的rpx
uni.getSystemInfo({
success(res) {
console.log(res.screenWidth) //屏幕宽度
that.myrpx = 750*1/res.screenWidth
console.log(that.myrpx);
}
});
转换结果: