css CSS下划线动画
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css CSS下划线动画相关的知识,希望对你有一定的参考价值。
<a href="#">Link</a>
a {
position: relative;
color: #000;
text-decoration: none;
}
a:hover {
color: #000;
}
a:before {
content: "";
position: absolute;
width: 100%;
height: 2px;
bottom: -5px;
left: 0;
background-color: #000;
visibility: hidden;
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
a:hover:before {
visibility: visible;
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
以上是关于css CSS下划线动画的主要内容,如果未能解决你的问题,请参考以下文章
css 链接下划线动画
css 链接悬停状态的动画渐变下划线
导航菜单中常用的css下划线动画效果-案例
小程序 纯css 实现tab导航栏下划线跟随动画
从中心开始的下划线动画的 CSS 代码更改
悬停在下拉菜单上时保持主导航项悬停 CSS