Retina真實還原1px邊框的解決方案

業務中碰到了一個厲害的 UI 妹紙, 因為邊框的 1px border 會被渲染成 2px(物理像素), 因此看起來會比較粗,問題抓了我很久, , UI 妹紙就說不行! 一定要改!你可以那下面的圖干她。說,你看到沒有,改毛線啊@!!!

射雞師給你設計圖是這樣的!

1px邊框 手機屏幕

然後你 boder:1px solid #ccc,然後到手機上一看,又粗又大,又長

然後,測試的妹子,受不了了……

然後,你說是的啊

……

像雞巴的岩石

於是,你一張圖片上去一看……

確實,不對呀!

<img src="img/bg.png" stylex="position: fixed;top:0;left: 0;width: 100%;z-index: 999;opacity: .5;">

66666666.jpg

然後,怎麼辦了呢

第一:你想到的是:

設計圖是750px,然後在iphon6上顯示是375px

因為retina下1個 CSS 像素對應2個物理像素(多數是2個), 那麼我們只需要想辦法把border的寬度變為0.5px, 那麼展現就是1個物理像素了.

那我設置

@media (min--moz-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 144dpi), (min-resolution: 2dppx), (-ms-high-contrast:active), (-ms-high-contrast:none) {

*{

border-width: .5px;

}

}

然後,其它屏幕,不整除呢……0.x0x px

^^

這個有點扯蛋::因為,像素的定義:1px,就是顯示的最小單位

定義:

像素是指基本原色素及其灰度的基本編碼。[1] 像素是構成數碼影像的基本單元,通常以像素每英寸PPI(pixels per inch)為單位來表示影像解析度的大小。

例如300x300PPI解析度,即表示水平方向與垂直方向上每英寸長度上的像素數都是300,也可表示為一平方英寸內有9萬(300x300)像素。[2]

巴拉拉,省去xxxx萬字哈……

我不喜歡科普哈!!!

然後,又怎麼辦呢!

我用圖片:

1.BASE64:2像素圖片,裡面只有像素;

border-base64 手機1px邊框圖片

background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAAXNSR…hZcwAADsMAAA7DAcdvqGQAAAAQSURBVBhXY5g5c+Z/BhAAABRcAsvqBShzAAAAAElFTkSuQmCC);

background-position: 0 0;

background-repeat: repeat-x;

background-size: 1px 1px;

2.漸變背景圖片:

.border_top { background-image: -webkit-linear-gradient(right,transparent 50%,#999 50%); background-image: linear-gradient(to right,transparent 50%,#999 50%); background-size: 1px 100%; background-repeat: no-repeat; background-position: center right; border-top: 0 none; padding-top: 1px; }

//下面是sass版本

@mixin boderHash($color:#efefef,$direction:"all"){

background-repeat: no-repeat;

@if($direction=="all"){

border:none;

padding: 1px;

background-image:

-webkit-linear-gradient(top, $color 50%, #999 50%),

-webkit-linear-gradient(right, transparent 50%, $color 50%),

-webkit-linear-gradient(bottom, transparent 50%, $color 50%),

-webkit-linear-gradient(left, transparent 50%, $color 50%);

background-image:

linear-gradient(to top, transparent 50%, $color 50%),

linear-gradient(to right, transparent 50%, $color 50%),

linear-gradient(to bottom, transparent 50%, $color 50%),

linear-gradient(to left,transparent 50%, $color 50%);

background-size:

100% 1px,

1px 100%,

100% 1px,

1px 100%;

background-position:

top center,

right center,

bottom center,

left center;

}@else {

border-#{$direction}: 1px solid ;

background-image: -webkit-linear-gradient($direction, transparent 50%, $color 50%);

background-image: linear-gradient(to $direction, transparent 50%, $color 50%);

@if($direction=="left" or $direction=="right"){

background-size: 100% 1px;

}

@if $direction=="top" or $direction=="bottom"{

background-size: 1px 100% ;

}

}

}

第三:使用,偽類元素。

然後絕對定位:個人覺得性能消耗太大1

所以也不不再唧唧歪歪

其實:

我們知道的網站。都沒有使用這些東西

不想,看圖

如果有人叼你!!

你直接那這些圖,干她!!

轉載請註明文章來處:Retina真實還原1px邊框的解決方案 - css3,css3動畫,css3新特性 - 周陸軍的個人網站


推薦閱讀:

小記JS模塊化
網站性能優化實戰——從12.67s到1.06s的故事
2018 前端性能檢查表
[譯] HTTP/2 Server Push 詳解
[譯]Web 的現狀:網頁性能提升指南

TAG:前端開發 | 前端入門 | 前端性能優化 |