美文网首页
screen.width 、devicePixelRatio、分

screen.width 、devicePixelRatio、分

作者: 踩坑怪At芬达 | 来源:发表于2021-08-09 11:34 被阅读0次

    物理像素

    每台手机介绍里的分辨率即为物理像素
    如:iphone X的分辨率 2436*1125
    在浏览器中获取物理像素 = window.screen.width*window.devicePixelRatio

    设备独立像素

    通过window.screen.width 获取
    比如在iphoneX上,用3个像素点来表示1个像素点,所以折算后的独立像 素尺寸为 812*375,独立像素一遍都是可以通过系统或者软件来变更的。

    devicePixelRatio

    window.devicePixelRatio = 物理像素 / 设备独立像素
    iphoneX的devicePixelRatio即为 2436/812 = 3
    设备像素转换比,也就是用多少个像素来表示1个像素的比例

    PPI

    每英寸的物理像素数,在我们实际开发中没什么用。

    屏幕宽高比

    屏幕宽高比=物理像素宽÷物理像素高

    相关文章

      网友评论

          本文标题:screen.width 、devicePixelRatio、分

          本文链接:https://www.haomeiwen.com/subject/lgyezctx.html