Dre*_*ieb 5 css google-chrome dpi retina-display
这是我在 CSS 中创建的按钮的一个孤立示例。它具有带渐变的 1px 边框和背景渐变。背景渐变作为伪元素实现,以允许其不透明度在悬停时淡化。
https://codepen.io/anon/pen/wbYoeo?editors=1100
.Button
{
width: 200px;
height: 30px;
cursor: pointer;
padding: 0.8rem;
border-style: solid;
border-image: linear-gradient(
to right,
green 0%,
blue 100%);
border-image-slice: 1;
border-width: 1px;
position: relative;
margin-top: 10px;
transition: color 0.2s;
}
.Button::before
{
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-image: linear-gradient(
to right,
green 0%,
blue 100%);
opacity: 0.5;
transition: opacity 0.2s;
}
Run Code Online (Sandbox Code Playgroud)
该按钮在不同 DPI 的显示器之间呈现不同。使用不同 DPI 比例在 Windows 上的 Chrome 中呈现的按钮的屏幕截图:
我尝试了几种策略来呈现按钮,但它们都导致了差距:
linear-gradient同时使用border-image和background-image。我会(未经教育的)猜测这是由缩放时的子像素引起的。它不能是像素的一小部分,因此它选择整个像素值;在某些比例下,父级的计算值比给子级的值大 1px。
去掉按钮 div 本身的边框,并将其放在::after伪元素上,这样边框和背景都是子元素。现在,边框的缩放比例似乎与背景渐变一致。
例子
.Button {
width: 200px;
height: 30px;
cursor: pointer;
padding: 0.8rem;
position: relative;
margin-top: 10px;
transition: color 0.2s;
}
.Button::before {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-image: linear-gradient( to right, green 0%, blue 100%);
opacity: 0.2;
transition: opacity 0.2s;
}
.Button:hover::before {
opacity: 0.5;
}
.Button:active::before {
opacity: 1;
}
.Button::after {
content: '';
border-style: solid;
border-image: linear-gradient( to right, green 0%, blue 100%);
border-image-slice: 1;
border-width: 1px;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
}
html {
height: 100%;
display: table;
margin: auto;
}
body {
background: black;
display: table-cell;
vertical-align: middle;
color: white;
font-family: sans-serif;
}Run Code Online (Sandbox Code Playgroud)
Click it:
<div class="Button"></div>Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1606 次 |
| 最近记录: |