"Slide dropdown navigation"
Bootstrap 3.2.0 Snippet by maridlcrmn

<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"> </div> <button type="submit" class="btn btn-default">Submit</button> </form> <ul class="nav navbar-nav navbar-right"> <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> </div><!-- /.navbar-collapse --> </div><!-- /.container-fluid --> </nav>
$(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'); } ); });

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 () - 3 years ago - Reply 0


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

Phatcharapon Salikup () - 6 years ago - Reply 0


responsive drop down menu not working...

alok soni () - 7 years ago - Reply 0


This is great. Thank you!

Megan Smith () - 8 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 () - 9 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 () - 9 years ago - Reply 0


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

Sanket () - 9 years ago - Reply 0


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

zestum () - 9 years ago - Reply 0


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

Bruno Seixas () - 9 years ago - Reply 0