导航栏的,下划线动画
2019-01-30 本文已影响0人
赵羽珩
image.png
.User268_SubNav li::after {
display: block;
content: "";
height: 1px;
background: #3377ff;
width: 0;
transition: all linear 0.2s;
}
.User268_SubNav li:hover::after {
width: 100%;
}