亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

網(wǎng)頁設(shè)計

CSS3實現(xiàn)選項卡切換的方法

時間:2024-08-05 00:45:27 網(wǎng)頁設(shè)計 我要投稿
  • 相關(guān)推薦

CSS3實現(xiàn)選項卡切換的方法

  導(dǎo)語:在網(wǎng)頁制作時采用層疊樣式表技術(shù),可以有效地對頁面的布局、字體、顏色、背景和其它效果實現(xiàn)更加精確的控制。以下的是YJBYS生小編為大家搜集的使用CSS3實現(xiàn)選項卡切換的方法,歡迎閱讀參考。

  :target是什么?

  MDN是這樣描述的::target

  The :target pseudo-class represents the unique element, if any, with an id matching the fragment identifier of the URI of the document.

  在document中,可以設(shè)置錨鏈接,舉個例子:

  CSS Code復(fù)制內(nèi)容到剪貼板

  Test :target

  Test 2:target 

This is a tab.  
This is another tab.

  上面存在兩個錨鏈接:#tab和t#ab2。當(dāng)點擊錨鏈接時,就會跳到對應(yīng)的div,則::target就是給這些div用的。添加一下CSS

  CSS Code復(fù)制內(nèi)容到剪貼板

  :target{

  color:red;

  }

  #tab:target::after{

  content:"tab1"

  }

  點擊錨鏈接,對應(yīng)鏈接的div的文本變成紅色,另外,給#tab后面插入一個文本。

  效果猛戳:https://jsfiddle.net/dwqs/cL8rawov/

  應(yīng)該大致明白了:target的含義了吧~

  :target可以做什么

  最簡單的用處:利用:target實現(xiàn)選項卡切換。

  HTML:

  XML/HTML Code復(fù)制內(nèi)容到剪貼板

  tab1

  tab2

  tab3

This is a tab1  

This is a tab2  
This is a tab3  

  CSS:

  CSS Code復(fù)制內(nèi)容到剪貼板

  .tab-control a{

  display:inline-block;

  text-decoration:none;

  color:#FFF;

  height:20px;

  width:40px;

  text-align:center;

  line-height:20px;

  background:rgba(70,121,189,0.75);

  }

  .tab-control a:hover{

  background:rgba(70,121,189,1);

  }

  .tabs{

  position:relative;

  border:1px solid red;

  height:200px;

  width:135px;

  overflow:hidden;

  }

  .tab{

  height:100%;

  width:100%;

  }

  :target{

  display:block;

  }

  看看效果:Demo

  當(dāng)然,:target的功能不僅局限于此。隱藏元素、創(chuàng)建lightbox 等。MDN上給了很多個demo:more demo.

  你自己也可以腦洞大開一下,哈哈。

  瀏覽器支持

  對于:target偽類,瀏覽器支持情況還是不錯的。

【CSS3實現(xiàn)選項卡切換的方法】相關(guān)文章:

css實現(xiàn)的tab切換效果實例03-29

linux命令切換目錄的使用方法介紹03-01

關(guān)于Java動態(tài)實現(xiàn)的方法04-02

PHP實現(xiàn)多線程的方法03-29

php頁面緩存實現(xiàn)方法11-27

C#TrieTree介紹及實現(xiàn)方法11-30

實現(xiàn)java屏幕抓屏的方法03-27

PHP實現(xiàn)獲取域名的方法小結(jié)06-08

excel中實現(xiàn)文本換行的方法03-14