用CSS實現Tab切換效果
最近切一個頁面的時候涉及到了一個tab切換的部分,因為不想用js想著能不能用純CSS的選擇器來實現切換效果。搜了一下大致有下面三種寫法。
- 利用
:hover
選擇器- 缺點:只有滑鼠在元素上面的時候才有效果,無法實現選中和預設顯示某一個的效果
- 利用
a標籤的錨點 + :target選擇器
- 缺點:因為錨點會將選中的元素滾動到頁面最上面,每次切換位置都要移動,體驗極差。
- 利用
label和radio
的繫結關係和radio選中時的:checked
來實現效果- 缺點:HTML結構元素更復雜
經過實驗發現第三種方法達到的效果最好。所以下面講一下第三種實現的方法。
這種方法的寫法不固定,我查資料的時候各種各樣的寫法都有一度讓我一頭霧水的。最後看完發現總體思路都是一樣的,無非就是下面的幾個步驟。
- 繫結label和radio:這個不用說id和for屬性繫結
- 隱藏radio按鈕:這個方法有很多充分發揮你們的想象力就可以了,我見過的方法有設定
display:none;
隱藏的、設定絕對定位,將left設定為很大的負值,移動到頁面外達到隱藏效果、設定**絕對定位:使元素脫離文件流,然後opacity: 0;
**設定為透明來達到隱藏效果。 - 隱藏多餘的tab頁:和上面同理,還可以通過
z-index
設定層級關係來相互遮擋。 - 設定預設項:在預設按鈕上新增
checked="checked"
屬性 - 設定選中效果:利用
+
選擇器 和~
選擇器來設定選中對應元素時下方的tab頁的樣式,來達到選中的效果/* 當radio為選中狀態時設定它的test-label兄弟元素的屬性 */ input[type="radio"]:checked+.test-label { /* 為了修飾存在的邊框背景屬性 */ border-color: #cbcccc; border-bottom-color: #fff; background: #fff; /* 為了修飾存在的層級使下邊框遮擋下方div的上邊框 */ z-index: 10; } /* 當radio為選中狀態時設定與它同級的tab-box元素的顯示層級 */ input[type="radio"]:checked~.tab-box { /* 選中時提升層級,遮擋其他tab頁達到選中切換的效果 */ z-index: 5; } 複製程式碼
這樣就可以實現一個Tab頁切換的效果了,不用一點兒js,當然肯定也有相容性的問題。實際操作中tab頁還是使用js比較好。下面是小Demo的程式碼,樣式比較多主要是為了實現各種選中效果,真正用來達到選擇切換目地的核心程式碼就幾行
程式碼:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CSS實現Tab切換效果</title>
<style>
ul {
margin: 0;
padding: 0;
}
.clearfloat {
zoom: 1;
}
.clearfloat::after {
display: block;
clear: both;
content: "";
visibility: hidden;
height: 0;
}
.tab-list {
position: relative;
}
.tab-list .tab-itom {
float: left;
list-style: none;
margin-right: 4px;
}
.tab-itom .test-label {
position: relative;
display: block;
width: 85px;
height: 27px;
border: 1px solid transparent;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
line-height: 27px;
text-align: center;
background: #e7e8eb;
}
.tab-itom .tab-box {
/* 設定絕對定位方便定位相對於tab-list欄的位置,同時為了可以使用z-index屬性 */
position: absolute;
left: 0;
top: 28px;
width: 488px;
height: 248px;
border: 1px solid #cbcccc;
border-radius: 5px;
border-top-left-radius: 0px;
background: #fff;
/* 設定層級最低方便選中狀態遮擋 */
z-index: 0;
}
/* 用絕對定位使按鈕脫離文件流,透明度設定為0將其隱藏 */
input[type="radio"] {
position: absolute;
opacity: 0;
}
/* 利用選擇器實現 tab切換 */
/* 當radio為選中狀態時設定它的test-label兄弟元素的屬性 */
input[type="radio"]:checked + .test-label {
/* 為了修飾存在的邊框背景屬性 */
border-color: #cbcccc;
border-bottom-color: #fff;
background: #fff;
/* 為了修飾存在的層級使下邊框遮擋下方div的上邊框 */
z-index: 10;
}
/* 當radio為選中狀態時設定與它同級的tab-box元素的顯示層級 */
input[type="radio"]:checked ~ .tab-box {
/* 選中時提升層級,遮擋其他tab頁達到選中切換的效果 */
z-index: 5;
}
</style>
</head>
<body class="clearfloat">
<ul class="tab-list clearfloat">
<li class="tab-itom">
<input type="radio" id="testTabRadio1" class="test-radio" name="tab" checked="checked">
<label class="test-label" for="testTabRadio1">選項卡一</label>
<div class="tab-box">
111111111111
</div>
</li>
<li class="tab-itom">
<input type="radio" id="testTabRadio2" class="test-radio" name="tab">
<label class="test-label" for="testTabRadio2">選項卡二</label>
<div class="tab-box">
2222222222222
</div>
</li>
<li class="tab-itom">
<input type="radio" id="testTabRadio3" class="test-radio" name="tab">
<label class="test-label" for="testTabRadio3">選項卡三</label>
<div class="tab-box">
33333333333333
</div>
</li>
</ul>
</body>
</html>
複製程式碼