CSS箭頭引導的分佈效果

螞蟻小編發表於2018-05-23

分享一段程式碼例項,它實現了帶有箭頭的分佈引導效果。

這樣的效果在實際應用中也是比較常見的,比如用於註冊,流程辦理等等。

程式碼例項:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<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(demo/CSS/img/stepbg.png) 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>
</head>
<body>
<div 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>
</div>
</body>
</html>

相關文章