이 글에서는 참고할만한 좋은 CSS3 다단계 진행률 표시줄(코드 포함)의 구현 원리를 주로 소개합니다. 아래 에디터로 살펴보겠습니다
오늘 직장에서 다단계 진행바 코드를 작성했는데, 공유해드리고자 합니다!
렌더링:
코드 표시:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>step</title> </head> <style> ul,li{list-style:none;} .flow_steps{height:55px;width:1000px;margin:100px auto;} .flow_steps .steps{padding-left:0;} .flow_steps ul li { float:left; height:55px; padding:0 70px 0 50px; line-height:55px; text-align:center; background:url(//m.sbmmt.com/) no-repeat 100% 0 #E4E4E4;font-family: "microsoft yahei";color:#6C6C6C;} .flow_steps ul li.done { background-position:100% 0px; background-color:#E1E1E1;} .flow_steps ul li.current_prev { background-position:100% -55px; background-color:#E1E1E1;} .flow_steps ul li.current { color:#fff; background-color:#DD4D3C;} .flow_steps ul li.last { background-image:none;} .flow_steps ul li.first { border-radius:10px 0 0 10px; } .flow_steps ul li.last { border-radius:0 10px 10px 0; } </style> <body> <p class="flow_steps clearfix"> <ul class="clearfix steps"> <li class=" done first current_prev "> 第一步 </li> <li class=" current"> 第二步 </li> <li class=" "> 第三步 </li> <li class=" last"> 第四步 </li> </ul> </p> </body> </html>
위 내용은 CSS3 다단계 진행 표시줄 구현 원리(코드 포함)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!