"Left and right Sidebar navigation"
Bootstrap 3.1.0 Snippet by anil0495

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="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.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 ---------->
<div id="wrapper">
<!-- Sidebar -->
<div id="sidebar-wrapper-left">
<nav id="spy">
<ul class="sidebar-nav nav">
<li class="sidebar-brand">
<a href="#home"><span class="fa fa-home solo">Home</span></a>
</li>
<li>
<a href="#anch1" data-scroll>
<span class="fa fa-anchor solo">Anchor 1</span>
</a>
</li>
<li>
<a href="#anch2" data-scroll>
<span class="fa fa-anchor solo">Anchor 2</span>
</a>
</li>
<li>
<a href="#anch3" data-scroll>
<span class="fa fa-anchor solo">Anchor 3</span>
</a>
</li>
<li>
<a href="#anch4" data-scroll>
<span class="fa fa-anchor solo">Anchor 4</span>
</a>
</li>
</ul>
</nav>
</div>
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
#wrapper {
padding-left: 250px;
padding-right: 250px;
transition: all 0.4s ease 0s;
}
#sidebar-wrapper-left {
margin-left: -250px;
left: 250px;
width: 250px;
background: #000;
position: fixed;
height: 100%;
overflow-y: auto;
z-index: 1000;
transition: all 0.4s ease 0s;
}
#sidebar-wrapper-right {
margin-right: -250px;
right: 250px;
width: 250px;
background: #000;
position: fixed;
height: 100%;
overflow-y: auto;
z-index: 1000;
transition: all 0.4s ease 0s;
}
#wrapper.active-left {
padding-left: 0;
}
#wrapper.active-right {
padding-right: 0;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
/*Menu-toggle*/
$("#menu-toggle-left").click(function(e) {
e.preventDefault();
$("#wrapper").toggleClass("active-left");
});
$("#menu-toggle-right").click(function(e) {
e.preventDefault();
$("#wrapper").toggleClass("active-right");
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: