"Slide dropdown navigation"
Bootstrap 3.2.0 Snippet by maridlcrmn

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.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.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 ---------->
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-slide-dropdown">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Brand</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-slide-dropdown">
<ul class="nav navbar-nav">
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</li>
</ul>
<form class="navbar-form navbar-left" role="search">
<div class="form-group">
<input type="text" class="form-control" placeholder="Search">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
$(document).ready(function(){
$(".dropdown").hover(
function() {
$('.dropdown-menu', this).not('.in .dropdown-menu').stop( true, true ).slideDown("fast");
$(this).toggleClass('open');
},
function() {
$('.dropdown-menu', this).not('.in .dropdown-menu').stop( true, true ).slideUp("fast");
$(this).toggleClass('open');
}
);
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments:

Hei very nice code!

I have a problem with it on my phone. When I click on "more" the dropdown opens with the animation but when I click again to close the dropdown it doesn't close.

How can I fix that?

udis () - 5 years ago - Reply 0


This is great. It's works. Thank you.

Phatcharapon Salikup () - 7 years ago - Reply 0


responsive drop down menu not working...

alok soni () - 9 years ago - Reply 0


This is great. Thank you!

Megan Smith () - 9 years ago - Reply 0


This is almost exactly what I need. However, I would like to be able to add a web address location of the root of "Dropdown" is clicked. What do I need to do?

David Spencer () - 10 years ago - Reply 0


This is almost exactly what I need. However, I would like to be able to add web address location if the root of "Dropdown" is clicked. What do I need to do?

Guest () - 10 years ago - Reply 0


here some issue occurs when we use it in mobile for specially dropdown

Sanket () - 10 years ago - Reply 0


You need correct your js for case of collapsed state: $('.dropdown-menu', this).not('.in .dropdown-menu')...

zestum () - 10 years ago - Reply 0


There´s a lot of menus but this has a pretty fancy yet effective effect ;)

Bruno Seixas () - 10 years ago - Reply 0