"Vertical Tab Menu "
Bootstrap 3.3.0 Snippet by sshelzi

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<div class="container">
<div class="row">
<div class="col-lg-10 col-md-10 col-sm-12 col-xs-12 bhoechie-tab-container">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-2 bhoechie-tab-menu">
<div class="list-group">
<a href="#" class="list-group-item active text-center certification windows"> <!--style="background-color:#008cce;-->
<h3><i class="fa fa-windows"></i></h3><br/>Windows
</a>
<a href="#" class="list-group-item text-center windows-server"> <!--style="background-color:#2b3385;"-->
<h3><i class="fa fa-windows"></i></h3><br/>Windows Server
</a>
<a href="#" class="list-group-item text-center office365"> <!--style="background-color:#ef1f26;"-->
<h3><i class="fa fa-paperclip"></i></h3><br/>Office 365
</a>
<a href="#" class="list-group-item text-center certification sql"> <!-- style="background-color:#535a5a;"-->
<h3><i class="fa fa-database"></i></h3><br/>SQL Server
</a>
<a href="#" class="list-group-item text-center azure" style="height:33.33%;"> <!-- style="background-color:#01aef0;"-->
<h3 class="fa fa-cloud"></h3><br/>Azure
</a>
<a href="#" class="list-group-item text-center certification dev"> <!-- style="background-color:#613095;"-->
<h3><i class="fa fa-code"></i></h3><br/>Development paths
</a>
</div>
</div>
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-9 bhoechie-tab">
<!-- flight section -->
<div class="bhoechie-tab-content active">
<center>
<h1 class="glyphicon glyphicon-plane" style="font-size:14em;color:#55518a"></h1>
<h2 style="margin-top: 0;color:#55518a">Cooming Soon</h2>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* bhoechie tab */
div.bhoechie-tab-container{
z-index: 10;
background-color: #ffffff;
padding: 0 !important;
border-radius: 4px;
-moz-border-radius: 4px;
border:1px solid #ddd;
margin-top: 20px;
margin-left: 50px;
-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
box-shadow: 0 6px 12px rgba(0,0,0,.175);
-moz-box-shadow: 0 6px 12px rgba(0,0,0,.175);
background-clip: padding-box;
opacity: 0.97;
filter: alpha(opacity=97);
}
div.bhoechie-tab-menu{
padding-right: 0;
padding-left: 0;
padding-bottom: 0;
}
a.list-group-item {
color: #939393;
}
div.bhoechie-tab-menu div.list-group{
margin-bottom: 0;
}
div.list-group h3{
color: #fff;
font-size: 50px;
margin: 0 24px;
font-weight: 300;
}
div.bhoechie-tab-menu div.list-group>a{
margin-bottom: 0;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
$(document).ready(function() {
$("div.bhoechie-tab-menu>div.list-group>a").click(function(e) {
e.preventDefault();
$(this).siblings('a.active').removeClass("active");
$(this).addClass("active");
var index = $(this).index();
$("div.bhoechie-tab>div.bhoechie-tab-content").removeClass("active");
$("div.bhoechie-tab>div.bhoechie-tab-content").eq(index).addClass("active");
});
});
$(function(){
$('.btn-circle').on('click',function(){
$('.btn-circle.btn-info').removeClass('btn-info').addClass('btn-default');
$(this).addClass('btn-info').removeClass('btn-default').blur();
});
$('.next-step, .prev-step').on('click', function (e){
var $activeTab = $('.tab-pane.active');
$('.btn-circle.btn-info').removeClass('btn-info').addClass('btn-default');
if ( $(e.target).hasClass('next-step') )
{
var nextTab = $activeTab.next('.tab-pane').attr('id');
$('[href="#'+ nextTab +'"]').addClass('btn-info').removeClass('btn-default');
$('[href="#'+ nextTab +'"]').tab('show');
}
else
{
var prevTab = $activeTab.prev('.tab-pane').attr('id');
$('[href="#'+ prevTab +'"]').addClass('btn-info').removeClass('btn-default');
$('[href="#'+ prevTab +'"]').tab('show');
}
});
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: