"Bootstrap Full width Slider, header, header width Slider, "
Bootstrap 3.0.0 Snippet by aditya43

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.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.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 href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<div id="wrapper">
<header class="header navbar-fixed-top">
<div class="container">
<ul class="nav navbar-nav navbar-right topnav ">
<li class="followUs">
<a href="#"><i class="fa fa-facebook fa-fw"></i></a>
<a href="#"><i class="fa fa-twitter fa-fw"></i></a>
<a href="#"><i class="fa fa-google-plus fa-fw"></i></a>
<a href="#"><i class="fa fa-youtube fa-fw"></i></a>
</li>
<li class="active"><a href="callto:9999999999"><i class="fa fa-phone fa-fw"></i> +91 9999999999</a></li>
<li class="active"><a href="mailto:info@Aditya.com"><i class="fa fa-envelope fa-fw"></i> info@bloom.com</a></li>
</ul>
</div><!-- end of container -->
<nav class="navbar menubar navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" data-target="#navbarCollapse" data-toggle="collapse" class="navbar-toggle">
<span class="sr-only"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="navbar-brand logo"><h4>My Logo Here</h4></a>
</div>
<!-- Collection of nav links, forms, and other content for toggling -->
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
html,
body{
height: 100%;
}
html {
min-height: 100%;
}
body {
height: 100%;
}
#wrapper{
width: 100%;
display: block;
margin: 0px;
position: relative;
}
.header{
display: block;
background-color: #f1f1f1;
}
.topnav{
display: block;
}
.topnav li{
margin: 0px 6px;
}
.header .topnav li a{
color: #000;
font-size: 13px;
padding: 3px 3px;
font-weight: 200;
}
.followUs a{
float: left;
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
/*===================================
scrollTop menu effects
===================================*/
$(window).scroll(function () {
if ($(window).scrollTop() > 100) {
$(".menubar").addClass('meffect');
} else {
$(".menubar").removeClass('meffect');
}
});
function openNav2() {
document.getElementById("rightside").style.width = "450px";
document.body.style.backgroundColor = "rgba(168,232,226, 0.7)";
}
function closeNav2() {
document.getElementById("rightside").style.width = "0";
document.body.style.backgroundColor = "white";
}
/*===================================
megadropdown menu
===================================*/
$(function(){
$('.dropdown').hover(function() {
$(this).addClass('open');
},
function() {
$(this).removeClass('open');
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: