描点鼠标移上去动画

前端之家收集整理的这篇文章主要介绍了描点鼠标移上去动画前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

CSS 样式

a:hover {
color: rgb(69,86,103);
}

a:before {
content: " ";
position: absolute;
width:100%;
height: 2px;
bottom: -.3rem;
left: 0;
background-color: rgb(69,103);
visibility: hidden;
transform: scaleX(0);
-webkit-transform: scaleX(0);
transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
}

a:hover:before {
visibility: visible;
transform: scaleX(1);
-webkit-transform: scaleX(1);
}

HTML 页面

DEMO:

猜你在找的程序笔记相关文章