Progress Bar with HTML and CSS

前端 未结 15 1130
耶瑟儿~
耶瑟儿~ 2020-12-02 05:13

I want to create a progress bar like in the below image:

\"Progress

I have no idea about

15条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-02 05:34

    .bar {
    background - color: blue;
    height: 40 px;
    width: 40 px;
    border - style: solid;
    border - right - width: 1300 px;
    border - radius: 40 px;
    animation - name: Load;
    animation - duration: 11 s;
    position: relative;
    animation - iteration - count: 1;
    animation - fill - mode: forwards;
    }
    
    @keyframes Load {
    100 % {
        width: 1300 px;border - right - width: 5;
    }
    

提交回复
热议问题