小程序-js-宽度单位转换-px转rpx
//不一定只适用于宽度,可能可以作为一个普通的单位转换方法
function getPxToRpxWidth(pxComponentWidth){
try {
var res = wx.getSystemInfoSync()
console.log(res.model)
console.log(res.pixelRatio)
console.log(res.windowWidth)
console.log(res.windowHeight)
console.log(res.language)
console.log(res.version)
console.log(res.platform)
var pxWindowWidth = res.windowWidth;
var rpxComponentWidth = 750 * (pxComponentWidth ) / pxWindowWidth;
return rpxComponentWidth ;
} catch (e) {
// Do something when catch error
}
return null;
}
正文到此结束