码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-09-10 00:14:10      阅读:153      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!