标签:isp for animation near linear mod inline height play
.line {
border-bottom: 2px solid #E40012;
width:0px;
display: inline-block;
height: 2px;
margin-bottom: 6px;
}
.animation-box:hover .line {
animation: test 0.5s linear;
animation-fill-mode :forwards;
}
@-webkit-keyframes test {
0%{
width: 5px;
}
20%{
width: 10px;
}
40%{
width: 15px;
}
60%{
width: 20px;
}
80%{
width: 25px;
}
100%{
width: 30px;
}
}
标签:isp for animation near linear mod inline height play
原文地址:http://www.cnblogs.com/candy-Yao/p/7499768.html