LeB*_*eau 1 css colors css3 transitions
我有黑色文字,我想在悬停时变黄.
但是,我想转换为使文本从文本的底部到顶部填充颜色.
纯css有可能吗?
data-*属性中存储相同的文本.::before或者::after伪元素将其放在文本正上方.0悬停时的动画..text {
display: inline-block;
vertical-align: top;
position: relative;
line-height: 40px;
font-size: 30px;
cursor: pointer;
margin: 20px;
color: gold;
}
.text:before {
transition: height 0.5s ease;
content: attr(data-text);
position: absolute;
overflow: hidden;
height: 40px;
color: black;
left: 0;
top: 0;
}
.text:hover:before {
height: 0;
}Run Code Online (Sandbox Code Playgroud)
<div class="text" data-text="Some text here">Some text here</div>Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1013 次 |
| 最近记录: |