主頁 > 知識庫 > html 實(shí)現(xiàn)tab切換的示例代碼

html 實(shí)現(xiàn)tab切換的示例代碼

熱門標(biāo)簽:重慶人工智能電銷機(jī)器人報(bào)價(jià) 愛巢地圖標(biāo)注 貴陽ai外呼系統(tǒng) 電銷外呼線路改不外呼線路 強(qiáng)訊外呼系統(tǒng) 智能電銷機(jī)器人廣告語 電話機(jī)器人批發(fā) 長春極信防封電銷卡公司 crm外呼系統(tǒng)好不好

tab切換在項(xiàng)目中也算是常用技術(shù),一般實(shí)現(xiàn)tab切換都用js或者jq實(shí)現(xiàn),今天介紹兩種只用css實(shí)現(xiàn)tab切換方法:

方法一:

原理:通過label標(biāo)簽的關(guān)聯(lián)屬性和input的單選類型實(shí)現(xiàn)相應(yīng)div的顯示

1.創(chuàng)建一個類名為wrap的div當(dāng)作容器

2.創(chuàng)建四個label標(biāo)簽,這將作為tab切換項(xiàng)

3.在每一個label中創(chuàng)建一個span標(biāo)簽(導(dǎo)航內(nèi)容),input標(biāo)簽(實(shí)現(xiàn)選中于取消選中)type類型為radio,還要創(chuàng)建一個div作為這個導(dǎo)航項(xiàng)被點(diǎn)中是顯示內(nèi)容框,

這里要注意的是input標(biāo)簽的name必須是相同的,我這邊取名叫tab

最終HTML為下面這樣:

<div class="wrap">
    <label>
        <span>home</span>
        <input type="radio" name="tab" checked>
        <div>home-page</div>
    </label>
    <label>
        <span>list</span>
        <input type="radio" name="tab">
        <div>list-page</div>
    </label>
    <label>
        <span>news</span>
        <input type="radio" name="tab">
        <div>news-page</div>
    </label>
    <label>
        <span>mine</span>
        <input type="radio" name="tab">
        <div>mine-page</div>
    </label>
</div>

重要的css,通過將input的width設(shè)為0使得input的那個小圓點(diǎn)不現(xiàn)實(shí),又通過label的關(guān)聯(lián)用導(dǎo)航項(xiàng)的點(diǎn)擊實(shí)現(xiàn)input的checked,然后通過input:checked+div{display:block}實(shí)現(xiàn)相應(yīng)div的顯示

<style type="text/css">
        *{margin: 0;padding: 0;}
        .wrap{
            margin: 20px auto;
            width: 403px;
            height: 600px;
            border:1px solid brown;
            position: relative;
        }
        label{
            width: 100px;
            height: 30px;
            float: left;
            text-align: center;
            line-height:30px;
            border-right: 1px solid brown;
            border-bottom: 1px solid brown;
        }
        label:nth-of-type(4){
            border-right: none;
        }
        label span{
            cursor: pointer;
        }
        label div{
            width: 403px;
            height: 568px;
            position: absolute;
            left: 0;
            top: 31px;
            background: #eeeeee;
            display: none;
        }
        label input{
            width: 0;
        }
        input:checked+div{
            display: block;
        }
    </style>

方法二:

原理:通過a標(biāo)簽的錨點(diǎn)實(shí)現(xiàn)切換,也就a的href的路徑是要切換div的id

1.創(chuàng)建一個類名為wrap的div作為容器

2.創(chuàng)建一個類名為nav的div,在里邊創(chuàng)建四個a標(biāo)簽,a標(biāo)簽的href分別是要切換到的div的id

3.創(chuàng)建一個和nav兄弟關(guān)系的類名為sh的容器用來放置切換的div

4.創(chuàng)建顯示內(nèi)容div,id分別和上面a標(biāo)簽對應(yīng)

最終代碼如下:

<div class="wrap">
    <div class="nav">
        <a href="#home">home</a>
        <a href="#list">list</a>
        <a href="#news">news</a>
        <a href="#mine">mine</a>
    </div>
    <div class="sh">
        <div id="home">home-page</div>
        <div id="list">list-page</div>
        <div id="news">news-page</div>
        <div id="mine">mine-page</div>
    </div>
</div>

css樣式設(shè)置,即將類名為sh下的div設(shè)置為display:none;然后通過div:target{display:block}實(shí)現(xiàn)顯示選中項(xiàng)

<style type="text/css">
        *{margin: 0;padding: 0}
        .wrap{
            width: 400px;
            height: 600px;
            border: 1px solid brown;
            margin: 20px auto;
            position: relative;
        }
        .nav{
            width: 100%;
            height: 30px;
        }
        .nav a{
            width: 99px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            border-right: 1px solid brown;
            border-bottom: 1px solid brown;
            float: left;
            text-decoration: none;
            color:black;
        }
        .sh{
            width: 400px;
            height: 569px;
            position: absolute;
            left: 0;
            top:31px;
            background: #eeeeee;
        }
        .sh div{
            display: none;
            text-align: center;
        }
        .sh div:target{
            display: block;
        }
    </style>

到此這篇關(guān)于html 實(shí)現(xiàn)tab切換的示例代碼的文章就介紹到這了,更多相關(guān)html tab切換內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!

標(biāo)簽:陜西 吳忠 山南 保定 上海 清遠(yuǎn) 廣安 內(nèi)蒙古

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《html 實(shí)現(xiàn)tab切換的示例代碼》,本文關(guān)鍵詞  html,實(shí)現(xiàn),tab,切換,的,示例,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《html 實(shí)現(xiàn)tab切換的示例代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于html 實(shí)現(xiàn)tab切換的示例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章