Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions. This project was inspired by the off-canvas navigation menu seen on Medium.
Pushy has been implemented on many sites, check them out! Feel free to let me know if you use Pushy in one of your websites.
- Uses CSS transforms & transitions.
- Smooth performance on mobile devices.
- jQuery animation fallback for IE 7 - 9.
- Menu closes when a link is selected.
- Menu closes when the site overlay is selected.
- Auto-collapsible submenus.
- Left or right menu position.
- It's responsive!
Download the packaged source file, this includes everything you need to get Pushy running on your site.
-
Add the stylesheet (pushy.css) in your head and the JS (pushy.min.js) file in your footer.
-
If you are using submenus, then you'll need to add the
arrow.svg
file into yourimg
directory (optional). -
Insert the following markup into your body.
<!-- Pushy Menu -->
<nav class="pushy pushy-left">
<div class="pushy-content">
<ul>
<!-- Submenu -->
<li class="pushy-submenu">
<button>Submenu</button>
<ul>
<li class="pushy-link"><a href="#">Item 1</a></li>
<li class="pushy-link"><a href="#">Item 2</a></li>
<li class="pushy-link"><a href="#">Item 3</a></li>
</ul>
</li>
<li class="pushy-link"><a href="#">Item 1</a></li>
<li class="pushy-link"><a href="#">Item 2</a></li>
</ul>
</div>
</nav>
<!-- Site Overlay -->
<div class="site-overlay"></div>
<!-- Your Content -->
<div id="container">
<!-- Menu Button -->
<button class="menu-btn">☰ Menu</button>
</div>
If your are comfortable with command line, you can install Pushy as a Bower package:
bower install pushy
Pushy works great with WordPress, here are some general tips to get it working with your theme:
- Use the console in your browser to troubleshoot errors in your theme.
- Make sure you are enqueuing the scripts correctly in your theme.
- Pushy requires jQuery, so be sure to load it as a dependancy.
- If you are using wp_nav_menu with Pushy, you will need to use a Walker to add the CSS classes Pushy requires.
NOTE: This is not a WordPress plugin.
- Use the
.pushy-left
or.pushy-right
CSS class to specify the menu position.
<!-- Pushy will transition from the right -->
<nav class="pushy pushy-right">
<div class="pushy-content">
<ul>
<li class="pushy-link"><a href="#">Item 1</a></li>
<li class="pushy-link"><a href="#">Item 2</a></li>
</ul>
</div>
</nav>
- Use the
.push
CSS class on HTML elements outside of the#container
.
<header class="push">
<h1>This is a Heading</h1>
<h2>This is a subheading</h2>
</header>
<!-- Your Content -->
<div id="container"></div>
- If you are using SCSS, you can easily change the menu width by adjusting the
$menu_width
variable. The SCSS file will need to be compiled to CSS in order to see the change.
$menu_width: 400px;
- Not using SCSS? You'll have to update the multiple values (or do a find a replace!) in the
pushy.css
file.
.pushy{
width: 400px; /* Changed the width to 400px */
}
.pushy-left{
transform: translate3d(-400px,0,0); /* Updated the values */
/* Don't forget the vendor prefixes */
}
.pushy-open-left #container,
.pushy-open-left .push {
transform: translate3d(400px, 0, 0); /* Updated the values */
}
.pushy-right {
transform: translate3d(400px, 0, 0); /* Updated the values */
/* Don't forget the vendor prefixes */
}
.pushy-open-right #container,
.pushy-open-right .push {
transform: translate3d(-400px, 0, 0); /* Updated the values */
/* Don't forget the vendor prefixes */
}
- Only links with the CSS class of
pushy-link
will close the menu.
<nav class="pushy pushy-left">
<div class="pushy-content">
<ul>
<!-- This link will close the menu -->
<li class="pushy-link"><a href="#">Item 1</a></li>
<!-- This link won't close the menu -->
<li><a href="#">Item 2</a></li>
</ul>
</div>
</nav>
- If you want to prevent scrolling of your site when Pushy is open just add overflow-x: hidden and height: 100% to both the html & body tags.
html, body{
overflow-x: hidden;
height: 100%;
-webkit-overflow-scrolling: touch;
}
- Use the
data-focus
attribute to give focus to a link when Pushy is opened. Ideally the first link of the menu should be focused. For example.home-page
or#profile-page
.
<nav class="pushy pushy-left" data-focus="#first-link">
<div class="pushy-content">
<ul>
<li class="pushy-submenu">
<button id="first-link">Submenu 1</button>
<ul>
<li class="pushy-link"><a href="#">Item 1</a></li>
<li class="pushy-link"><a href="#">Item 2</a></li>
<li class="pushy-link"><a href="#">Item 3</a></li>
</ul>
</li>
<li class="pushy-link"><a href="#">Item 1</a></li>
<li class="pushy-link"><a href="#">Item 2</a></li>
<li class="pushy-link"><a href="#">Item 3</a></li>
<li class="pushy-link"><a href="#">Item 4</a></li>
</ul>
</div>
</nav>
Desktop | Mobile |
---|---|
IE 9-11 | Chrome (Android) |
MS Edge | Safari (iOS) |
Chrome | |
Firefox | |
Safari (Mac) |
1.1.0
- Accessibility (a11y) enhancements:
- Can access and use menu with keyboard navigation.
- Can use the escape key to close the menu when opened.
- Changed the empty submenu links to buttons.
- Added
data-focus
attribute to allow user to specify a link to focus on when menu is opened. - Added
.pushy-content
element to menu structure (fixes visibility flickering). - Changed
.menu-btn
div to button.
- Removed some redundant CSS classes from
pushy.css
. - Removed
toggleSubmenuFallback
function, older browsers will usetoggleSubmenu
instead. - Fixed issue #88
1.0.0
- Added auto-collapsable submenus.
- Added
.pushy-right
CSS class for right sided menu position. - Added SCSS files.
- Added menu width SCSS variable.
- Updated click event listeners.
- Updated demo file.
- Updated browser compatibility.
- Removed unneeded CSS browser prefixes.
- Consolidated menu state CSS classes.
- Fixed brief menu visibility.
0.9.2
- Removed modernizr dependency.
- Updated site overlay with color + smoother transition.
- Cleaned up the CSS a bit.
- Dropped support for IE 7 & 8.
0.9.1
- Added support for more menu items (with scroll bar).
- Added the .push CSS class. This adds pushy support to additional HTML elements outside of the container div.
- Fixed menu transition.
- Tested in iOS 7.
- Updated the demo file.
0.9.0
- Added a site overlay when Pushy is toggled
- Fixed horizontal scroll bar issue on mobile devices
- Disabled webkit tap highlight
- Rejiggered the JS file
- Updated to jQuery 1.10.1
- Updated the demo file
0.8.4
- Fixed performance issue with mobile devices
- Updated to jQuery 1.10
- Updated the demo file
- Updated the read me
Pushy has been implemented on many sites in the wild, check them out:
- Lela Design by @div3rDesign
- Servizi CGN by @MacSiva
- emota by @YayRomina
- Plex
- Flight Centre
- Selby College by @welcomebrand
- Nordic Kaluste by Joonas Sippola
- Bentleys Estate and Lettings Agents by @WolfHook
- Firefox OS Devices by @s_hentzschel
- FulcrumTech by @maxlapides
- Organized Interiors by @bombippy
- The Black and Blue by @evanluzi
Note: You may have to resize your browser on some sites to see Pushy in action.
To add your site, tweet to me @cmyee.