純css實現tab選項卡效果

admin發表於2017-04-14

更多的選項卡效果可以查閱特效下載版塊選項卡分類。

下面分享一個使用純css實現的選項卡效果。

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
.tabs {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  font-family: "微軟雅黑";
}
.tabs label {
  padding: 1rem 2rem;
  background: #90CAF9;
  font-weight: bold;
  margin-right: 0.2rem;
  cursor: pointer;
  transition: all .2s ease;
}
.tabs input[type="radio"] {
  opacity: 0;
  position: absolute;
}
.tab {
  background: #fff;
  padding: 1rem;
  width: 400px;
  display: none;
  position: absolute;
  top: 50px;
}
.tabs input[type="radio"]:checked + label {
  background: #fff;
}
.tabs input[type="radio"]:checked + label + .tab {
  display: block;
}
</style>
</head>
<body>
  <div class="tabs">
    <input type="radio" name="tabs" id="tabone" checked="checked">
    <label for="tabone">螞蟻部落一</label>
    <div class="tab">
      <p>螞蟻部落一的詳細內容</p>
    </div>
    <input type="radio" name="tabs" id="tabtwo">
    <label for="tabtwo">螞蟻部落二</label>
    <div class="tab">
      <p>螞蟻部落二的詳細內容</p>
    </div>
    <input type="radio" name="tabs" id="tabthree">
    <label for="tabthree">螞蟻部落三</label>
    <div class="tab">
      <p>螞蟻部落三的詳細內容</p>
    </div>
  </div>
</body>
</html>

相關文章