Created
March 22, 2016 17:34
-
-
Save bulbul84/0ab9a58c868c5922cc13 to your computer and use it in GitHub Desktop.
How to make with twitter bootstrap tabs on hover instead of clicking?
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="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"/> | |
<!-- Nav pills --> | |
<ul class="nav nav-pills"> | |
<li class="active"><a href="#tab-1" data-toggle="tab">Tab 1</a></li> | |
<li><a href="#tab-2" data-toggle="tab">Tab 2</a></li> | |
<li><a href="#tab-3" data-toggle="tab">Tab 3</a></li> | |
<li><a href="#tab-4" data-toggle="tab">Tab 4</a></li> | |
</ul> | |
<!-- Tab panes --> | |
<div class="tab-content well"> | |
<div class="tab-pane active" id="tab-1">Content 1</div> | |
<div class="tab-pane" id="tab-2">Content 2</div> | |
<div class="tab-pane" id="tab-3">Content 3</div> | |
<div class="tab-pane" id="tab-4">Content 4</div> | |
</div> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.min.js"></script> | |
<script src="//cdn.rawgit.com/tonystar/bootstrap-hover-tabs/v3.1.1/bootstrap-hover-tabs.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
http://stackoverflow.com/questions/9815247/how-to-make-with-twitter-bootstrap-tabs-on-hover-instead-of-clicking | |
http://tutsme-webdesign.info/bootstrap-3-toggable-tabs-and-pills/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment