How to use html to achieve progress bar effect

王林
Release: 2020-10-26 16:48:19
forward
2654 people have browsed it

How to use html to achieve progress bar effect

html code:

<div class="progress"  style="height: 80px;line-height: 80px;">
    <span class="orange" style="width: 100%;"></span>
</div>
Copy after login

Video learning recommendation: html video tutorial

css code:

.progress {
    height:10px;
    background:#ebebeb;
    border-left:1px solid transparent;
    border-right:1px solid transparent;
    border-radius:10px;
}
.progress > span {
    position:relative;
    float:left;
    margin:0 -1px;
    min-width:30px;
    height:10px;
    line-height:16px;
    text-align:right;
    background:#cccccc;
    border:1px solid;
    border-color:#bfbfbf #b3b3b3 #9e9e9e;
    border-radius:10px;
    background-image:-webkit-linear-gradient(top,#f0f0f0 0%,#dbdbdb 70%,#cccccc 100%);
    background-image:-moz-linear-gradient(top,#f0f0f0 0%,#dbdbdb 70%,#cccccc 100%);
    background-image:-o-linear-gradient(top,#f0f0f0 0%,#dbdbdb 70%,#cccccc 100%);
    background-image:linear-gradient(to bottom,#f0f0f0 0%,#dbdbdb 70%,#cccccc 100%);
    -webkit-box-shadow:inset 0 1px rgba(255,255,255,0.3),0 1px 2px rgba(0,0,0,0.2);
    box-shadow:inset 0 1px rgba(255,255,255,0.3),0 1px 2px rgba(0,0,0,0.2);
}
.progress .orange {
    background:#FE8E01;
    border-color:#FE8E02 #FE8E02 #BF6B02;
    background-image:-webkit-linear-gradient(top,#FEAA41 0%,#FE8E02 70%,#FE8E01 100%);
    background-image:-moz-linear-gradient(top,#FEAA41 0%,#FE8E02 70%,#FE8E01 100%);
    background-image:-o-linear-gradient(top,#FEAA41 0%,#FE8E02 70%,#FE8E01 100%);
    background-image:linear-gradient(to bottom,#FEAA41 0%,#FE8E02 70%,#FE8E01 100%);
}
Copy after login

Related recommendations: html tutorial

The above is the detailed content of How to use html to achieve progress bar effect. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template