移动端1px像素解决方式,从1px像素问题剖析像素及viewport

站长手记 作者: 2024-08-28 13:20:02
在移动端web开发过程中,如果你对边框设置border:1px,会发现,边框在某些手机机型上面显示的1px比实际感觉会变粗,这也就是1像素问题。如下图是对桌面浏览器和移动端border设置1px的比较。那么是什么导致这种原因的呢?

一、1px像素产生原因

1、设备像素(device pixels)

2、设备独立像素(dpi)

3、css像素与设备像素比(dpr)


<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>
<!--width=device-width:宽度为设备宽度-->
<!--initial-scale:缩放比为1-->
<!--user-scalable=no:是否允许用户自定义缩放-->

二、1px像素解决方式

解决边框变粗的7种办法

1、0.5px边框
7607773ab545d5f36b68b269b20205f1.jpg
0.5px边框
if (window.devicePixelRatio && devicePixelRatio >= 2) {
  var testElem = document.createElement('div');
  testElem.style.border = '.5px solid transparent';
  document.body.appendChild(testElem);
}
if (testElem.offsetHeight == 1) {
  document.querySelector('html').classList.add('hairlines');
}
  document.body.removeChild(testElem);
}
// 脚本应该放在内,如果在里面运行,需要包装 $(document).ready(function() {})
div {
  border: 1px solid #bbb;
}
.hairlines div {
  border-width: 0.5px;
}
  • 简单,不需要过多代码。
  • 无法兼容安卓设备、 iOS 8 以下设备。
2、使用border-image实现
371d0998afefaa3ea86383105e353733.jpg
底部边框
.border-bottom-1px {
  border-width: 0 0 1px 0;
  -webkit-border-image: url(linenew.png) 0 0 2 0 stretch;
  border-image: url(linenew.png) 0 0 2 0 stretch;
}
上下边框
上下边框
.border-image-1px {
  border-width: 1px 0;
  -webkit-border-image: url(linenew.png) 2 0 stretch;
  border-image: url(linenew.png) 2 0 stretch;
}
.border-image-1px {
  border-bottom: 1px solid #666;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .border-image-1px {
    border-bottom: none;
    border-width: 0 0 1px 0;
    -webkit-border-image: url(../img/linenew.png) 0 0 2 0 stretch;
    border-image: url(../img/linenew.png) 0 0 2 0 stretch;
  }
}
  • 可以设置单条,多条边框
  • 没有性能瓶颈的问题
  • 修改颜色麻烦, 需要替换图片
  • 圆角需要特殊处理,并且边缘会模糊
3、使用background-image实现
.background-image-1px {
  background: url(../img/line.png) repeat-x left bottom;
  -webkit-background-size: 100% 1px;
  background-size: 100% 1px;
}
  • 可以设置单条,多条边框
  • 没有性能瓶颈的问题
  • 修改颜色麻烦, 需要替换图片
  • 圆角需要特殊处理,并且边缘会模糊
4、多背景渐变实现
.background-gradient-1px {
  background:
    linear-gradient(#000, #000 100%, transparent 100%) left / 1px 100% no-repeat,
    linear-gradient(#000, #000 100%, transparent 100%) right / 1px 100% no-repeat,
    linear-gradient(#000,#000 100%, transparent 100%) top / 100% 1px no-repeat,
    linear-gradient(#000,#000 100%, transparent 100%) bottom / 100% 1px no-repeat
}
/* 或者 */
.background-gradient-1px{
  background:
    -webkit-gradient(linear, left top, right bottom, color-stop(0, transparent), color-stop(0, #000), to(#000)) left / 1px 100% no-repeat,
    -webkit-gradient(linear, left top, right bottom, color-stop(0, transparent), color-stop(0, #000), to(#000)) right / 1px 100% no-repeat,
    -webkit-gradient(linear, left top, right bottom, color-stop(0, transparent), color-stop(0, #000), to(#000)) top / 100% 1px no-repeat,
    -webkit-gradient(linear, left top, right bottom, color-stop(0, transparent), color-stop(0, #000), to(#000)) bottom / 100% 1px no-repeat
}
  • 可以实现单条、多条边框
  • 边框的颜色随意设置
  • 代码量不少
  • 圆角没法实现
  • 多背景图片有兼容性问题
5、使用box-shadow模拟边框
.box-shadow-1px {
  box-shadow: inset 0px -1px 1px -1px #c8c7cc;
}
  • 代码量少
  • 可以满足所有场景
  • 边框有阴影,颜色变浅
6、viewport + rem 实现
<meta name="viewport" content="initial-scale=0.5, maximum-scale=0.5, minimum-scale=0.5, user-scalable=no">
<meta name="viewport" content="initial-scale=0.3333333333333333, maximum-scale=0.3333333333333333, minimum-scale=0.3333333333333333, user-scalable=no">
  • 所有场景都能满足
  • 一套代码,可以兼容基本所有布局
  • 老项目修改代价过大,只适用于新项目
7、伪类 + transform 实现
.scale-1px{
  position: relative;
  border:none;
}
.scale-1px:after{
  content: '';
  position: absolute;
  bottom: 0;
  background: #000;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.scale-1px{
  position: relative;
  margin-bottom: 20px;
  border:none;
}
.scale-1px:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 200%;
  height: 200%;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}
if(window.devicePixelRatio && devicePixelRatio >= 2){
  document.querySelector('ul').className = 'scale-1px';
}
  • 所有场景都能满足
  • 支持圆角(伪类和本体类都需要加border-radius)
  • 对于已经使用伪类的元素(例如clearfix),可能需要多层嵌套
来源整理:简书地址http://www.jianshu.com/p/7e63f5a32636,
知乎地址:https://zhuanlan.zhihu.com/p/30640770
原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_70141.html
移动端 viewport 1px像素