0
我想一個讓所看到下面的圖片中progrss吧。定製進度條修改challange
我不能做的是
- 得出的數字之間的連接線
- 活躍的數量將有一個更大的圈子
- 完成的步驟將有一個綠色的線和未完成用灰線。
幫助,請。
CSS
.custom-progress-bar ul li span {
width: 27px;
height: 27px;
background: #cbcbcb;
color:#fff;
float: right;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
text-align: center;
margin-left: 14px;
font-size: 18px;
line-height: 28px;
}
.custom-progress-bar ul {
list-style:none;
}
.custom-progress-bar .last{
width: 80px;
border-radius: 20px;
}
.custom-progress-bar .completed{
background: #9cc656;
color:#fff;
}
HTML
<div class="custom-progress-bar">
<ul>
<li><span class="bubble"><a href="#">1</a></span></li>
<li><span class="bubble"><a href="#">2</a></span></li>
<li><span class="bubble"><a href="#">3</a></span></li>
<li><span class="bubble completed"><a href="#">4</a></span></li>
<li><span class="bubble"><a href="#">5</a></span></li>
<li><span class="bubble last"><a href="#">finish</a></span></li>
</ul>
</div>
我們可以看到你的代碼嗎? –