W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
本章將講解 Bootstrap 徽章(Badges)。徽章與標(biāo)簽相似,主要的區(qū)別在于徽章的邊角更加圓滑。
徽章(Badges)主要用于突出顯示新的或未讀的項(xiàng)。如需使用徽章,只需要把 <span class="badge"> 添加到鏈接、Bootstrap 導(dǎo)航等這些元素上即可。
下面的實(shí)例演示了這點(diǎn):
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 實(shí)例 - 徽章(Badges)</title>
<link rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="stylesheet">
<script src="http://cdn.bootcss.com/jquery/2.1.1/jquery.min.js" rel="external nofollow" rel="external nofollow" ></script>
<script src="http://cdn.bootcss.com/bootstrap/3.3.6/js/bootstrap.min.js" rel="external nofollow" rel="external nofollow" ></script>
</head>
<body>
<a href="#">Mailbox <span class="badge">50</span></a>
</body>
</html>
結(jié)果如下所示:
當(dāng)沒(méi)有新的或未讀的項(xiàng)時(shí),通過(guò) CSS 的 :empty 選擇器,徽章會(huì)折疊起來(lái),表示里邊沒(méi)有內(nèi)容。
您可以在激活狀態(tài)的膠囊式導(dǎo)航和列表導(dǎo)航中放置徽章。通過(guò)使用 <span class="badge"> 來(lái)激活鏈接,如下面的實(shí)例所示:
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 實(shí)例 - 激活導(dǎo)航狀態(tài)</title>
<link rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="stylesheet">
<script src="http://cdn.bootcss.com/jquery/2.1.1/jquery.min.js" rel="external nofollow" rel="external nofollow" ></script>
<script src="http://cdn.bootcss.com/bootstrap/3.3.6/js/bootstrap.min.js" rel="external nofollow" rel="external nofollow" ></script>
</head>
<body>
<h4>膠囊式導(dǎo)航中的激活狀態(tài)</h4>
<ul class="nav nav-pills">
<li class="active"><a href="#">首頁(yè) <span class="badge">42</span></a></li>
<li><a href="#">簡(jiǎn)介</a></li>
<li><a href="#">消息 <span class="badge">3</span></a></li>
</ul>
<br>
<h4>列表導(dǎo)航中的激活狀態(tài)</h4>
<ul class="nav nav-pills nav-stacked" style="max-width: 260px;">
<li class="active">
<a href="#">
<span class="badge pull-right">42</span>
首頁(yè)
</a>
</li>
<li><a href="#">簡(jiǎn)介</a></li>
<li>
<a href="#">
<span class="badge pull-right">3</span>
消息
</a>
</li>
</ul>
</body>
</html>
結(jié)果如下所示:
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: