鼠标移到某个地方时,从左向右划出一条线的动画

Posted Candy-Yao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了鼠标移到某个地方时,从左向右划出一条线的动画相关的知识,希望对你有一定的参考价值。

.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;
    }
}

  

以上是关于鼠标移到某个地方时,从左向右划出一条线的动画的主要内容,如果未能解决你的问题,请参考以下文章