🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Push Menu is a jQuery plugin used to create an Android style navigation drawer (also known as off-canvas menu) that slides in from the left side of the webpage.

side-menu off-canvas-menu

Documentation

jQuery Push Menu

Push Menu is a jQuery plugin like android push menu

Requirements

HTML

<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.2.min.js"></script> <script type="text/javascript" src="js/pushmenu.js"></script> <link rel="stylesheet" type="text/css" href="css/pushmenu.css">

Menu

<div id="pm_menu" class="pm_close"> 	<ul> 		<li><a href="#">Home</a></li> 		<li><a href="#">About</a></li> 		<li><a href="#">Gallery</a></li> 		<li><a href="#">Contact</a></li> 	</ul> </div>  <button id="open">Open Menu</button> 

javascript

```javascript <script type="text/javascript"> (function($){ $('#pm_menu').pushmenu({ button : "#open" }); })(jQuery); </script> ```

Find more plugins here....


You May Also Like