- Posted On 9 April 2014
- By
- In Programming
Nowdays responsive design of website is very necessary and in that too if your navigation is very good looking and easy to use then site is always gets remembered by the viewer. In this post I am going to share the code about how to create responsive menu like facebook using very famous and widely adopted plugin "sidr" i.e. too with very famous responsive framework "Bootstrap".
Bootstrap is already comes with responsive menu but sidr menu looks more awesome. So I thought lets try to use sidr plugin with bootstrap and here is the code. :-)
If you are very new to Bootstrap, I will recommend you to read this post about What is Bootstrap.
<!DOCTYPE html> <html> <head> <title>Sidr Plugin with Bootstrap</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Bootstrap --> <link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap.css" rel="stylesheet" media="screen"> <link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap-responsive.css" rel="stylesheet"> <!-- sidr dark theme css --> <link href="https://cdn.jsdelivr.net/jquery.sidr/2.2.1/stylesheets/jquery.sidr.dark.min.css" rel="Stylesheet" /> </head> <body> <div class="navbar navbar-inverse navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <button type="button" id="btnRespNav" class="btn btn-navbar" style="float: left"> <span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"> </span> </button> <a class="brand" href="#">IMInfo.in</a> <div class="nav-collapse collapse"> <ul class="nav"> <li class="active"><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Products</a></li> <li><a href="#">Clients</a></li> <li><a href="#">Contact Us</a></li> </ul> </div> <!--/.nav-collapse --> </div> </div> </div> <script src="http://code.jquery.com/jquery.js"></script> <script src="http://getbootstrap.com/2.3.2/assets/js/bootstrap.min.js"></script> <!-- sidr js --> <script src="https://cdn.jsdelivr.net/jquery.sidr/2.2.1/jquery.sidr.min.js"></script> <script type="text/javascript"> $(document).ready(function () { $('.btn-navbar').sidr({ name: 'respNav', source: '.nav-collapse', }); }); //this code is close sidr menu if clicked outside {optional} $(document).bind("click", function () { $.sidr('close', 'respNav'); }); </script> </body> </html>
and below is the live fiddle of the same code.
You can download Sidr plugin from here.
Hope you have liked this post. Do share your thought on it in comment section below.
- Tags :
- jQueryJavascript
- Technology
How to create thumbnail image using HTML5 Canvas,Javascript
This post will help you to understand the code to create actual thumbnail image using HTML5 Canvas and javascript.
What is Bootstrap(One of the best free HTML CSS framework for responsive web applications)
In this post I will try to answer the question 'What is Bootstrap?', which is one of the widely used opensource HTML and CSS framework or you can say front end framework. I will also introduce some useful sites for BootStrap.
Top 10 Visual Studio things which can boost developers coding speed
Visual Studio 2012 provides some coding features by which you can code faster if use them properly. This post will cover top 10 things among them to boost your development speed.
Visual Studio 2008 Shell and TFS integration
Visual Studio 2008 Shell and TFS integration is the problem for all newbies of BIDS and TFS. Here is the solution.
Assembla - Free and private repository to manage your source code online with SVN subversion hosting
With Assembla you can share source code with others online. Free & Private source code repository with SVN Subversion, Git & Perforce Hosting.