CSS 分類標籤可以顯示分類內容,可透過以下步驟實現:建立HTML 容器,包含選項卡按鈕和內容,並設定其ID 屬性;設定選項卡和內容的CSS 樣式;使用JavaScript 監聽選項卡按鈕點擊事件,隱藏所有選項卡內容並顯示與所單擊按鈕相對應的選項卡內容。
CSS 分類標籤開啟方法
CSS 分類標籤是用於組織和展示內容的方式,它允許用戶透過點擊選項卡來切換不同類別的內容。要開啟CSS 分類選項卡,需要遵循以下步驟:
HTML 結構
<button>
或 <a>
元素,並設定其 id
屬性。 <div>
元素,並設定其 id
屬性。 以下是範例HTML 結構:
<code class="html"><div class="tabs"> <button id="tab1">选项卡 1</button> <button id="tab2">选项卡 2</button> <div id="content1">内容 1</div> <div id="content2">内容 2</div> </div></code>
CSS 樣式
以下是範例 CSS 樣式:
<code class="css">.tabs { display: flex; background-color: #f1f1f1; padding: 10px; } .tabs button { padding: 10px 20px; background-color: #ccc; border: none; cursor: pointer; } .tabs button.active { background-color: #f1f1f1; } .tabs div { display: none; padding: 20px; } .tabs div.active { display: block; }</code>
JavaScript 事件處理
以下是範例 JavaScript 事件處理:
<code class="javascript">const tabs = document.querySelector('.tabs'); tabs.addEventListener('click', (e) => { if (e.target.tagName === 'BUTTON') { const tabId = e.target.id; const contentId = tabId.replace('tab', 'content'); const buttons = tabs.querySelectorAll('button'); buttons.forEach(btn => btn.classList.remove('active')); e.target.classList.add('active'); const contents = tabs.querySelectorAll('div'); contents.forEach(content => content.classList.remove('active')); const content = tabs.querySelector(`#${contentId}`); content.classList.add('active'); } });</code>
以上是css分類選項卡怎麼打開的詳細內容。更多資訊請關注PHP中文網其他相關文章!