Created
November 1, 2019 08:53
-
-
Save trinhtanloc789/8704cadbde2d0e8f72111b9b40214644 to your computer and use it in GitHub Desktop.
[bootstrap] tabs/pills
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<h3>Tabs</h3> | |
<ul class="nav nav-pills"> | |
<li class="active"><a href="#home">Home</a> | |
</li> | |
<li><a href="#profile">profile</a></li> | |
<li><a href="#messages">messages</a> | |
</li> | |
<li><a href="#settings">settings</a></li> | |
</ul> | |
<div class="tab-content clearfix"> | |
<div class="tab-pane active" id="home"> | |
<li>aaaaa</li> | |
<li>bbbbb</li> | |
</div> | |
<div class="tab-pane fade" id="profile"> | |
<li>aaaaa</li> | |
<li>bbbbb</li> | |
<li>ccccc</li> | |
</div> | |
<div class="tab-pane fade" id="messages"> | |
<li>aaaaa</li> | |
<li>bbbbb</li> | |
<li>ccccc</li> | |
<li>ddddd</li> | |
</div> | |
<div class="tab-pane fade" id="settings"> | |
<li>aaaaa</li> | |
<li>bbbbb</li> | |
<li>ccccc</li> | |
<li>ddddd</li> | |
<li>eeeee</li> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.nav-pills a').click(function (e) { | |
e.preventDefault(); | |
$(this).tab('show'); | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.0.3/bootstrap.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.nav-pills, .tab-content{ | |
box-sizing: border-box; | |
} | |
.nav-pills{ | |
margin: 0; | |
border-radius: 5px 5px 0 0; | |
background: rgba(255,200,180,0.6); | |
font-weight: bold; | |
} | |
.nav-pills li a{ | |
margin: 0; | |
padding: 15px; | |
border-radius: 5px 5px 0 0; | |
} | |
.nav-pills > li.active > a, | |
.nav-pills > li.active > a:hover, | |
.nav-pills > li.active > a:focus{ | |
color: #000; | |
background-color: rgba(255,200,180,0.6); | |
} | |
.tab-content{ | |
padding: 20px 50px; | |
background: rgba(255,200,180,0.8); | |
font-size: 1.2em; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment