造成邊框變粗的原因
其實(shí)這個原因很簡單疮茄,因?yàn)閏ss中的1px并不等于移動設(shè)備的1px擎浴,這些由于不同的手機(jī)有不同的像素密度员咽。在window對象中有一個devicePixelRatio屬性,他可以反應(yīng)css中的像素與設(shè)備的像素比贮预。1px的邊框在 devicePixelRatio=2 的retina屏下會顯示成2px
devicePixelRatio的官方的定義為:設(shè)備物理像素和設(shè)備獨(dú)立像素的比例贝室,也就是 devicePixelRatio = 物理像素 / 獨(dú)立像素。
0.5px邊框
解決方案是通過 JavaScript 檢測瀏覽器能否處理0.5px的邊框仿吞,如果可以滑频,給 html
標(biāo)簽元素添加個class。
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);
}
// 腳本應(yīng)該放在內(nèi)唤冈,如果在里面運(yùn)行峡迷,需要包裝 $(document).ready(function() {})
然后,極細(xì)的邊框樣式就容易了:
div {
border: 1px solid #bbb;
}
.hairlines div {
border-width: 0.5px;
}
優(yōu)點(diǎn): 簡單你虹,不需要過多代碼
缺點(diǎn): 無法兼容安卓設(shè)備绘搞、 iOS 8 以下設(shè)備
viewport + rem 實(shí)現(xiàn)
同時通過設(shè)置對應(yīng)viewport的rem基準(zhǔn)值,這種方式就可以像以前一樣輕松愉快的寫1px了傅物。在devicePixelRatio = 2 時夯辖,輸出viewport:
<meta name="viewport" content="initial-scale=0.5, maximum-scale=0.5, minimum-scale=0.5, user-scalable=no">
在devicePixelRatio = 3 時,輸出viewport:
<meta name="viewport" content="initial-scale=0.3333333333333333, maximum-scale=0.3333333333333333, minimum-scale=0.3333333333333333, user-scalable=no">
這種兼容方案相對比較完美挟伙,適合新的項目,老的項目修改成本過大模孩。
對于這種方案尖阔,可以看看《使用Flexible實(shí)現(xiàn)手淘H5頁面的終端適配》
優(yōu)點(diǎn):
- 所有場景都能滿足
- 一套代碼,可以兼容基本所有布局
缺點(diǎn):
- 老項目修改代價過大榨咐,只適用于新項目
偽類 + transform 實(shí)現(xiàn)
對于老項目介却,有沒有什么辦法能兼容1px的尷尬問題了,個人認(rèn)為偽類+transform是比較完美的方法了屋彪。
原理是把原先元素的 border 去掉坎弯,然后利用 :before 或者 :after 重做 border ,并 transform 的 scale 縮小一半辛润,原先的元素相對定位永淌,新做的 border 絕對定位崎场。
單條border樣式設(shè)置:
.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;
}
四條boder樣式設(shè)置:
.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;
}
最好在使用前也判斷一下,結(jié)合 JS 代碼遂蛀,判斷是否 Retina 屏:
if(window.devicePixelRatio && devicePixelRatio >= 2){
document.querySelector('ul').className = 'scale-1px';
}
優(yōu)點(diǎn):
- 所有場景都能滿足
- 支持圓角(偽類和本體類都需要加border-radius)
缺點(diǎn):
- 對于已經(jīng)使用偽類的元素(例如clearfix),可能需要多層嵌套
使用border-image實(shí)現(xiàn)
準(zhǔn)備一張符合你要求的border-image:
樣式設(shè)置:
.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設(shè)置在邊框的底部李滴,所以使用的圖片是2px高螃宙,上部的1px顏色為透明堂湖,下部的1px使用視覺規(guī)定的border的顏色苗缩。如果邊框底部和頂部同時需要border,可以使用下面的border-image:
樣式設(shè)置:
.border-image-1px {
border-width: 1px 0;
-webkit-border-image: url(linenew.png) 2 0 stretch;
border-image: url(linenew.png) 2 0 stretch;
}
到目前為止声诸,我們已經(jīng)能在iphone上展現(xiàn)1px border的效果了酱讶。但是我們發(fā)現(xiàn)這樣的方法在非視網(wǎng)膜屏上會出現(xiàn)border顯示不出來的現(xiàn)象,于是使用Media Query做了一些兼容彼乌,樣式設(shè)置如下:
.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;
}
}
優(yōu)點(diǎn):
- 可以設(shè)置單條,多條邊框
- 沒有性能瓶頸的問題
缺點(diǎn):
- 修改顏色麻煩, 需要替換圖片
- 圓角需要特殊處理泻肯,并且邊緣會模糊
使用background-image實(shí)現(xiàn)
background-image 跟border-image的方法一樣,你要先準(zhǔn)備一張符合你要求的圖片慰照。然后將邊框模擬在背景上灶挟。
樣式設(shè)置:
.background-image-1px {
background: url(../img/line.png) repeat-x left bottom;
-webkit-background-size: 100% 1px;
background-size: 100% 1px;
}
優(yōu)點(diǎn):
- 可以設(shè)置單條,多條邊框
- 沒有性能瓶頸的問題
缺點(diǎn):
- 修改顏色麻煩, 需要替換圖片
- 圓角需要特殊處理,并且邊緣會模糊
多背景漸變實(shí)現(xiàn)
與background-image方案類似毒租,只是將圖片替換為css3漸變稚铣。設(shè)置1px的漸變背景,50%有顏色墅垮,50%透明惕医。
樣式設(shè)置:
.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
}
優(yōu)點(diǎn):
- 可以實(shí)現(xiàn)單條、多條邊框
- 邊框的顏色隨意設(shè)置
缺點(diǎn):
- 代碼量不少
- 圓角沒法實(shí)現(xiàn)
- 多背景圖片有兼容性問題
使用box-shadow模擬邊框
利用css 對陰影處理的方式實(shí)現(xiàn)0.5px的效果
樣式設(shè)置:
.box-shadow-1px {
box-shadow: inset 0px -1px 1px -1px #c8c7cc;
}
優(yōu)點(diǎn):
- 代碼量少
- 可以滿足所有場景
缺點(diǎn):
- 邊框有陰影算色,顏色變淺