1. 程式人生 > >鼠標移到某個地方時,從左向右劃出一條線的動畫

鼠標移到某個地方時,從左向右劃出一條線的動畫

spl near webkit forward line for solid linear clas

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

  

鼠標移到某個地方時,從左向右劃出一條線的動畫