技术&日志

微信小程序-自定义屏幕

宽度 高度 DRP 指的是什么?

宽度、高度指的是逻辑像素, DRP指的是device pixel ratio 设备像素缩放比, 设备物理像素和设备独立像素的比例.

微信小程序获取宽度,高度 DRP

wx.getSystemInfo({
  success: function(res) {
    console.log(res.pixelRatio)
    console.log(res.screenWidth)
    console.log(res.screenHeight)
  }
})

官方文档-getSystemInfo

相关资料

移动端web页面知识小结之像素、物理像素、逻辑像素

发表评论