css3第一步第二步分步效果
本章節分享一段程式碼例項,它實現了第一步、第二步這樣的分步流程效果。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <link href="" rel="stylesheet"> <style type="text/css"> .step { border: 1px solid #E9E9E9; border-radius: 5px; overflow: hidden; box-shadow: 0 0 4px #E9E9E9; width: 80%; margin: 50px auto; box-sizing: border-box; } .step .steps { display: inline-block; padding: 10px 10%; background: white; color: black; font-family: "Microsoft YaHei"; position: relative; width: 25%; box-sizing: border-box; float: left; transition: all ease-in 0.5s; cursor: pointer; } .step .steps::after { position: absolute; content: ""; display: block; height: 30px; width: 30px; background: white; top: 5px; right: -15px; transform: rotate(-45deg); transition: all ease-in 0.5s; } .step .steps:nth-child(1) { z-index: 3; } .step .steps:nth-child(2) { z-index: 2; } .step .steps:nth-child(3) { z-index: 1; } .step .steps:last-child::after { display: none; } .step .steps:hover, .step .steps:hover::after { background: #F0F0F0; } .step .steps:active, .step .steps:active::after { background: #8FA35D; color: white; } .step .steps.action { color: white; background-color: #3690CF; } .step .steps.action::after { background-color: #3690CF; } .step .steps:nth-child(3)::after { border-bottom: 1px solid #E5E5E5; border-right: 1px solid #E5E5E5; } .step .steps.disabled, .step .steps.disabled::after { color: #CBCBCB; background: white; } </style> </head> <body> <div class="step"> <span class="steps">第一步</span> <span class="steps action">第二步</span> <span class="steps">第三步</span> <span class="steps disabled">第四步</span> </div> </body> </html>
相關文章
- CSS3象棋效果CSSS3
- CSS3 文字效果CSSS3
- CSS3空心圓效果CSSS3
- CSS3呼吸燈效果CSSS3
- CSS3 矩形切角效果CSSS3
- CSS3哭臉效果CSSS3
- CSS3翻轉效果CSSS3
- CSS3動畫效果下拉導航選單效果CSSS3動畫
- CSS3圓環效果程式碼CSSS3
- CSS3箭靶效果程式碼CSSS3
- CSS3花屏文字效果CSSS3
- CSS3時間軸效果CSSS3
- CSS3白鶴展翅效果CSSS3
- CSS3 checkbox美化效果CSSS3
- CSS3動畫按鈕效果CSSS3動畫
- CSS3 旋轉魔方效果CSSS3
- css3實現翻牌效果CSSS3
- CSS3圓角表格效果CSSS3
- css3的半透明效果CSSS3
- CSS3 Loading效果CSSS3
- CSS3/HTML5實現漂亮的分步驟註冊登入表單CSSS3HTML
- css3過渡效果詳解CSSS3
- CSS3圖片旋轉效果CSSS3
- CSS3對勾效果詳解CSSS3
- CSS3圖片拉近放大效果CSSS3
- CSS3載入等待動畫效果CSSS3動畫
- CSS3現菱形效果程式碼CSSS3
- CSS3多面體旋轉效果CSSS3
- CSS3星系旋轉效果代CSSS3
- CSS3多層邊框效果CSSS3
- css3動畫完成打字機效果CSSS3動畫
- CSS3 光弧擴散效果CSSS3
- CSS3 div水平運動效果CSSS3
- CSS3大熊貓卡通效果CSSS3
- CSS3郵票鋸齒效果CSSS3
- CSS3環形輻射效果CSSS3
- CSS3文字模糊效果CSSS3
- CSS3 立方體翻轉效果CSSS3