移动端1px边框实现
问题描述:移动端iPhone上的1px边框看起来像2px那么粗。
问题分析:不同的手机有不同的像素密度,在window对象中有一个devicePixelRatio属性,它可以反应设备的像素与css中的像素比。即devicePixelRatio=物理像素/独立像素。iPhone使用的是Retine屏,“Retina”是一种显示技术,可以把更多的像素点压缩至一块屏幕里,从而达到更高的分辨率并提高屏幕显示的细腻程度。因为Retine屏的分辨率始终是普通屏幕的2倍,1px的边框在devicePixelRatio=2的Retine屏下会显示成2px,所以css设置1px的样式,实际是2px的效果。
解决方案:
1、用小数实现
div {
border: 1px solid #dfdfdf;
}
@media screen and (-webkit-min-device-pixel-ratio: 2) {
div {
border: 0.5px solid #dfdfdf;
}
}
@media screen and (-webkit-min-device-pixel-ratio: 3) {
div {
border: 0.333333px solid #dfdfdf;
}
}
无法兼容安卓设备和iOS8以下的设备。
2、用border-image实现
.border-image-1px {
border-bottom: 1px solid #dfdfdf;
}
@media 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/dot.png) 0 0 2 0 stretch;
border-image: url(../img/dot.png) 0 0 2 0 stretch;
}
}
修改颜色麻烦,需要替换图片,圆角需要特殊处理。
3、用background-image实现
@media screen and (-webkit-min-device-pixel-ratio: 2) {
.background-image-1px {
background: url(../img/line.png) repeat-x left bottom;
-webkit-background-size: 100% 1px;
background-size: 100% 1px;
}
}
修改颜色麻烦,需要替换图片,圆角需要特殊处理。
4、用多背景渐变实现
@media screen and (-webkit-min-device-pixel-ratio: 2) {
.background-gradient-1px {
background:
linear-gradient(#dfdfdf, #dfdfdf 100%, transparent 100%) left / 1px 100% no-repeat,
linear-gradient(#dfdfdf, #dfdfdf 100%, transparent 100%) right / 1px 100% no-repeat,
linear-gradient(#dfdfdf,#dfdfdf 100%, transparent 100%) top / 100% 1px no-repeat,
linear-gradient(#dfdfdf,#dfdfdf 100%, transparent 100%) bottom / 100% 1px no-repeat
}
}
/* 或者 */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
.background-gradient-1px{
background:
-webkit-gradient(linear, left top, right bottom, color-stop(0, transparent), color-stop(0, #dfdfdf), to(#dfdfdf)) left / 1px 100% no-repeat,
-webkit-gradient(linear, left top, right bottom, color-stop(0, transparent), color-stop(0, #dfdfdf), to(#dfdfdf)) right / 1px 100% no-repeat,
-webkit-gradient(linear, left top, right bottom, color-stop(0, transparent), color-stop(0, #dfdfdf), to(#dfdfdf)) top / 100% 1px no-repeat,
-webkit-gradient(linear, left top, right bottom, color-stop(0, transparent), color-stop(0, #dfdfdf), to(#dfdfdf)) bottom / 100% 1px no-repeat
}
}
圆角没法实现,多背景图片有兼容性问题。
5、用box-shadow实现
.box-shadow-1px {
box-shadow: inset 0px -1px 1px -1px #dfdfdf;
}
边框有阴影,颜色变浅。
6、用viewport+rem实现
devicePixelRatio=2时,
<meta name="viewport" content="initial-scale=0.5, maximum-scale=0.5, minimum-scale=0.5, user-scalable=no">
devicePixelRatio=3时,
<meta name="viewport" content="initial-scale=0.3333333333333333, maximum-scale=0.3333333333333333, minimum-scale=0.3333333333333333, user-scalable=no">
这种兼容方案相对比较完美,适合新的项目,老的项目修改成本过大。
手淘H5页面就采用了Flexible技术,核心是viewport+rem。
7、用伪元素+transform实现
原理是,把元素的border去掉,然后利用:before或者:after重做border,并让transform的 scale缩小一半,元素本身相对定位,新做的border绝对定位。
@media only screen and (-webkit-min-device-pixel-ratio: 2.0){
.border-1px, .border-top-1px, .border-right-1px ,.border-bottom-1px , .border-left-1px{
position: relative;
border:none;
}
/*线条颜色*/
.border-1px:after, .border-top-1px:after, .border-right-1px:after, .border-bottom-1px:after, .border-left-1px:after {
background-color: #f00;
}
/*上边边框一像素*/
.border-top-1px:after {
pointer-events: none;
content:"";
position: absolute;
left:;
top:;
width: 100%;
height: 1px;
transform-origin: 0 0;
transform: scaleY(0.5);
}
/*右边边框一像素*/
.border-right-1px:after {
pointer-events: none;
content:"";
position: absolute;
right:;
bottom:;
width: 1px;
height: 100%;
transform-origin: 0 0;
transform: scaleX(0.5);
}
/*底边边框一像素*/
.border-bottom-1px:after {
pointer-events: none;
content:"";
position: absolute;
left:;
bottom:;
width: 100%;
height: 1px;
transform-origin: 0 0;
transform: scaleY(0.5);
}
/*左边边框一像素*/
.border-left-1px:after {
pointer-events: none;
content:"";
position: absolute;
left:;
top:;
width: 1px;
height: 100%;
transform-origin: 0 0;
transform: scaleX(0.5);
}
/*边框一像素*/
.border-1px:after {
pointer-events: none;
content: "";
box-sizing: border-box;
position: absolute;
left:;
top:;
width: 200%;
height: 200%;
border: 1px solid #dfdfdf;
-webkit-transform: scale(0.5);
transform: scale(0.5);
-webkit-transform-origin: left top;
transform-origin: left top;
}
}
@media only screen and (-webkit-min-device-pixel-ratio: 3.0){
.border-1px, .border-top-1px, .border-right-1px ,.border-bottom-1px , .border-left-1px{
position: relative;
border:none;
}
/*线条颜色*/
.border-1px:after, .border-top-1px:after, .border-right-1px:after, .border-bottom-1px:after, .border-left-1px:after {
background-color: #f00;
}
/*上边边框一像素*/
.border-top-1px:after {
pointer-events: none;
content:"";
position: absolute;
left:;
top:;
width: 100%;
height: 1px;
transform-origin: 0 0;
transform: scaleY(0.333);
}
/*右边边框一像素*/
.border-right-1px:after {
pointer-events: none;
content:"";
position: absolute;
right:;
bottom:;
width: 1px;
height: 100%;
transform-origin: 0 0;
transform: scaleX(0.333);
}
/*底边边框一像素*/
.border-bottom-1px:after {
pointer-events: none;
content:"";
position: absolute;
left:;
bottom:;
width: 100%;
height: 1px;
transform-origin: 0 0;
transform: scaleY(0.333);
}
/*左边边框一像素*/
.border-left-1px:after {
pointer-events: none;
content:"";
position: absolute;
left:;
top:;
width: 1px;
height: 100%;
transform-origin: 0 0;
transform: scaleX(0.333);
}
/*边框一像素*/
.border-1px:after {
pointer-events: none;
content: "";
box-sizing: border-box;
position: absolute;
left:;
top:;
width: 300%;
height: 300%;
border: 1px solid #dfdfdf;
-webkit-transform: scale(0.333);
transform: scale(0.333);
-webkit-transform-origin: left top;
transform-origin: left top;
}
}
移动端1px边框实现的更多相关文章
- 移动端1px边框
问题:移动端1px边框,看起来总是2倍的边框大小,为了解决这个问题试用过很多方法,用图片,用js判断dpr等,都不太满意, 最后找到一个还算好用的方法:伪类 + transform 原理是把原先元素的 ...
- 移动端1px边框伪类宽高计算
移动端1px边框在手机上看显得比较粗,于是我们用伪类结合css3缩放的方法去设置线条,但是如果设置div的一条边,水平线就设置宽度100%,垂直线就设置高度100%,那么如果是div的四条边呢?宽高1 ...
- 目前解决移动端1px边框最好的方法
在移动端开发时,经常会遇到在视网膜屏幕中元素边框变粗的问题.本文将带你探讨边框变粗问题的产生原因及介绍目前市面上最好的解决方法. 1px 边框问题的由来 苹果 iPhone4 首次提出了 Retina ...
- 移动端1px边框问题
用于手机端受dpr的影响,实际开发中,PC端和移动端展示的效果不太一样,往往在PC端显示的是1px,移动端常常是偏粗一些. 解决办法: 主要是用到伪类及缩放.在需要画边框的元素上,设置一个伪类,它的伪 ...
- 解决CSS移动端1px边框问题
移动项目开发中,安卓或者IOS等高分辨率屏幕会把1px的border渲染成2px来显示,网上搜了一下,解决方法如下: 一.利用css中的transform的缩放属性解决,推荐这个.如下面代码. < ...
- 移动端1px边框解决方案
在retina屏中,像素比为2(iPhone6/7/8)或3(iPhone6Plus/7Plus/8Plus),1px的边框看起来比真的1px更宽. 使用伪类加transform的方式 元素本身不定义 ...
- 解决移动端1px边框问题的几种方法
1.边框粗细原因 在移动端下设置border为1px,在某些设备上看比1px粗. 这些由于不同的手机有不同的像素密度.在window对象中有一个devicePixelRatio属性,他可以反应css中 ...
- 移动端1px 边框完整方案(四个方向)
使用stylus(预处理) 需要一个函数接收两个参数 第一个需要在哪个方向出现边框 第二个边框颜色 $border1px(face,$color) 根据传入的方向属性,调整其他参数 l 左右方向 t ...
- 关于移动端1px边框问题
<div class="z_nei_list"> <div class="z_name_left font-size3">身份证号:&l ...
随机推荐
- Calendar 使用
Calendar 类是一个抽象类,在java.util.Calendar包中,它为特定瞬间与一组诸如 YEAR.MONTH.DAY_OF_MONTH.HOUR 等 日历字段之间的转换提供了一些方法,并 ...
- 交互题[CF1103B Game with modulo、CF1019B The hat、CF896B Ithea Plays With Chtholly]
交互题就是程序与电脑代码的交互. 比如没有主函数的程序,而spj则给你一段主函,就变成了一个整体函数. 还有一种就是程序和spj之间有互动,这个用到fflush(stdout);这个函数就可以实现交互 ...
- linux device drivers ch01
ch01. 设备驱动程序简介 设备驱动程序的作用在于提供机制(需要提供什么功能),而不是提供策略(如何使用这些功能). 内核功能划分: 进程管理:进程创建.销毁.进程间通信.共享cpu调度器. 内存管 ...
- 线性布局LinearLayout
常用属性 id:控件唯一属性 android:id="@+id/ll_1" --------------------------------------- layout_width ...
- codeforces-1138 (div2)
想法题是硬伤,面对卡题和卡bug的情况应对能力太差 A.求两个前缀和以及两个后缀和,相邻最小值的最大值. #include<iostream> using namespace std; ; ...
- Entity Framework入门教程(5)---EF中的持久化场景
EF中的持久性场景 使用EF实现实体持久化(保存)到数据库有两种情况:在线场景和离线场景. 1.在线场景 在线场景中,context是同一个上下文实例(从DbContext派生),检索和保存实体都通过 ...
- linux在线安装JDK(1.8版本)
在线下载JDK 命令: wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-sec ...
- vim与程序员
所有的 Unix Like 系统都会内建 vi 文书编辑器,其他的文书编辑器则不一定会存在. 但是目前我们使用比较多的是 vim 编辑器. vim 具有程序编辑的能力,可以主动的以字体颜色辨别语法的正 ...
- centos7.2 环境下两个数据库的安装部署
首先假如服务器上已经有一个 数据库mysql5.6.29,端口是3306. 接下来在安装一个mysql数据库,端口是3307的. 一:创建mysql编译目录 mkdir /usr/local/mysq ...
- C# - 操作符
操作符(Operator) C#的操作符是一种告诉编译器执行计算.逻辑判断的符号. default(x) 获取类型的默认值,x是类型.虽然可以为任意类型使用此操作符,但此操作符主要用于泛型,在不确定泛 ...