框阴影悬停过渡闪烁
Box-shadow hover transition blinking
我试图通过使黑色背景从左到右出现,使框阴影像 img 上的幻灯片动画一样工作。但是没有这个奇怪的闪烁问题我做不到。我已经在 Stack Overflow 周围寻找解决方案。
我也试过用section代替img,结果还是一样。
HTML
<section>
</section>
CSS
section {
border:black 1px solid;
width:500px;
height:200px;
transition:1s ease-out
}
section:hover{
box-shadow:inset 500px 0 0 #222;
float:left;
transition:1s ease-out;
}
这似乎是 box-shadow
绘制方式的结果。尝试另一种方法。这是一个无闪烁的解决方案,它加厚了左边框而不是添加框阴影:
div {
position: relative;
display: inline-block;
}
section {
border: black 1px solid;
width: 500px;
height: 200px;
transition: 1s ease-out;
box-sizing: border-box;
}
div:hover section {
border-left-width: 500px;
float: left;
transition: 1s ease-out;
}
section~* {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
color: #888;
}
<div class="prog">
<section></section>
<p>Here's some text content.</p>
</div>
另一种解决方案使用简单的伪元素并通过更改其右侧将过渡应用于宽度 属性 :
section {
border: black 1px solid;
width: 500px;
height: 200px;
position:relative;
color:#c2c2c2;
text-align:center;
padding-top:50px;
box-sizing:border-box;
}
section:before {
position: absolute;
content: " ";
top: 0;
bottom: 0;
left: 0;
background: #000;
right: 100%;
transition:1s ease-out;
z-index:-1;
}
section:hover::before {
right:0;
}
<section>
add your text here
</section>
您也可以简单地在初始状态中添加某种盒子阴影模拟,它的扩散半径非常小。
section {
box-shadow: inset 0 0 0 0.01px white;
}
我试图通过使黑色背景从左到右出现,使框阴影像 img 上的幻灯片动画一样工作。但是没有这个奇怪的闪烁问题我做不到。我已经在 Stack Overflow 周围寻找解决方案。
我也试过用section代替img,结果还是一样。
HTML
<section>
</section>
CSS
section {
border:black 1px solid;
width:500px;
height:200px;
transition:1s ease-out
}
section:hover{
box-shadow:inset 500px 0 0 #222;
float:left;
transition:1s ease-out;
}
这似乎是 box-shadow
绘制方式的结果。尝试另一种方法。这是一个无闪烁的解决方案,它加厚了左边框而不是添加框阴影:
div {
position: relative;
display: inline-block;
}
section {
border: black 1px solid;
width: 500px;
height: 200px;
transition: 1s ease-out;
box-sizing: border-box;
}
div:hover section {
border-left-width: 500px;
float: left;
transition: 1s ease-out;
}
section~* {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
color: #888;
}
<div class="prog">
<section></section>
<p>Here's some text content.</p>
</div>
另一种解决方案使用简单的伪元素并通过更改其右侧将过渡应用于宽度 属性 :
section {
border: black 1px solid;
width: 500px;
height: 200px;
position:relative;
color:#c2c2c2;
text-align:center;
padding-top:50px;
box-sizing:border-box;
}
section:before {
position: absolute;
content: " ";
top: 0;
bottom: 0;
left: 0;
background: #000;
right: 100%;
transition:1s ease-out;
z-index:-1;
}
section:hover::before {
right:0;
}
<section>
add your text here
</section>
您也可以简单地在初始状态中添加某种盒子阴影模拟,它的扩散半径非常小。
section {
box-shadow: inset 0 0 0 0.01px white;
}