移动端像素适配

Posted 安筱雨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端像素适配相关的知识,希望对你有一定的参考价值。

由于这个DPR的原因

我们在移动端写的

border:1px solid #ddd

在6plus上其实是3个像素(DPR=3)

在不同DPR的设备上显示是不一样的

 

@media (-webkit-min-device-pixel-ratio:1.5),(min-device-pixel-ratio:1.5){
  .border-1px{
    &::after{
      -webkit-transform: scaleY(0.7);
      transform: scaleY(0.7);
    }
  }
}

@media (-webkit-min-device-pixel-ratio:2),(min-device-pixel-ratio:2){
  .border-1px{
    &::after{
      -webkit-transform: scaleY(0.5);
      transform: scaleY(0.5);
    }
  }
}

@media(-webkit-min-device-pixel-ratio:3),(min-device-pixel-ratio:3){
  .border-1px{
    &::after{
      -webkit-transform: scaleY(0.33);
      transform: scaleY(0.33);
    }
  }
}

 

border-1px($color)
  position:relative
  &:after
    display:block
    position:absolute
    left:0
    bottom :0
    width:100%
    border-top: 1px solid $color
    content:‘‘

 

以上是关于移动端像素适配的主要内容,如果未能解决你的问题,请参考以下文章

移动端适配方案

移动端常用适配(完美解决)

移动端常用适配(完美解决)

移动端适配必须掌握的基本概念和适配方案

移动端像素适配

移动端中适配问题