Javascript Icon Get 62% off the JavaScript Master bundle

See the bundle then add to cart and your discount is applied.

0 days
00 hours
00 mins
00 secs

Write JavaScript like a pro. Javascript Icon

Follow the ultimate JavaScript roadmap.

Building an HTML5 responsive menu with media queries and JavaScript

Responsive navigation menus come in all different shapes and sizes, you might recall my post on creating a dynamic select menu from an existing menu, which is one method. So let’s visit another. The ‘in-page’ navigation.

Edit: If you’re looking for an even better responsive navigation that supports nested menus, check out my Flaunt JS script.

What is ‘in-page’ navigation?

Depending on your project, a dynamic

Simplicity is key

There’s no point serving up tonnes of JavaScript to deliver a responsive menu solution, especially using jQuery, as this gives us a few things to worry about. The juttering as the menu expands/collapses, and the performance when actually loading the page.

Creating our desktop navigation

Let’s break out the HTML5 elements and create a neat and basic menu:

<nav class="nav">
  <ul class="nav-list">
    <li class="nav-item"><a href="#">Home</a></li>
    <li class="nav-item"><a href="#">About</a></li>
    <li class="nav-item"><a href="#">Services</a></li>
    <li class="nav-item"><a href="#">Portfolio</a></li>
    <li class="nav-item"><a href="#">Testimonials</a></li>
    <li class="nav-item"><a href="#">Contact</a></li>
  </ul>
</nav>

Here I’ve used a nice naming convention on our navigation, unordered list and items inside. This gives us nice and easy CSS targeting.

Creating the desktop navigation

I’ll take you through my responsive workflow a little, and depending on your project and how you’re setting up your media queries, this may differ to you slightly.

First I am going to add some basic styling to the nav:

.nav {
  position:relative;
  display:inline-block;
  font-size:14px;
  font-weight:900;
}
.nav-list {

}
.nav-item {
  float:left;
  *display:inline;
  zoom:1;
}
.nav-item a {
  display:block;
  padding:15px 20px;
  color:#FFF;
  background:#34495E;
}
.nav-item:first-child a {
  border-radius:5px 0 0 5px;
}
.nav-item:last-child a {
  border-radius:0 5px 5px 0;
}
.nav-item a:hover {
  background:#2C3E50;
}

You’ll notice .nav has the ‘display:inline-block’ property, this is so it centralises in the page for the demo, and isn’t entirely necessary for production.

Angular Directives In-Depth eBook Cover

Free eBook

Directives, simple right? Wrong! On the outside they look simple, but even skilled Angular devs haven’t grasped every concept in this eBook.

  • Green Tick Icon Observables and Async Pipe
  • Green Tick Icon Identity Checking and Performance
  • Green Tick Icon Web Components <ng-template> syntax
  • Green Tick Icon <ng-container> and Observable Composition
  • Green Tick Icon Advanced Rendering Patterns
  • Green Tick Icon Setters and Getters for Styles and Class Bindings

This sets out a nice deep grey/blue coloured navigation for us to work with on the desktop. Done. But now we need a mobile navigation.

Mobile navigation

Now we’ve established a basepoint for our navigation, we need to think mobile and tablet. Our navigation items at the minute are inline to eachother, but this needs to change for mobile.

To get the navigation to sit ontop of eachother, we need to create a new CSS rule using media queries, to tell the browser/device that anything iPad and under needs to show the navigation elements ontop of each other - stacked!

This doesn’t require much fiddling, but we’ve introduced a media query:

@media only screen and (min-width: 320px) and (max-width: 768px) {
  .nav {
    width:100%;
  }
  .nav-item {
    width:100%;
    float:none;
  }
}

Depending on the design of your project, you might need to use different media queries, but essentially, this media query saves us from undoing/redoing later styles that we need to re-apply. It tells the browser two things; 1) any styles above 320px, use this styles, and 2) don’t show these styles to anything above 768px, which is anything larger than iPad. This is a pretty good use of the min-width and max-width CSS3 media queries as you can achieve a lot with very little.

What the above CSS does is change our inline navigation items into full-width and stacked items, just what we need.

Expanding and collapse

Mobile navigations are there to save room, so I don’t believe in showing the full navigation (unless you’ve really got the room), I’d rather show off the design and functionality of the awesome menu though with some clever JavaScript.

First we need to create an element to click on, which will act as the popular ‘three-line’ menu approach which is pretty iconic when it comes to mobile users, so it’s a safe bet:

var mobile = document.createElement('div');
mobile.className = 'nav-mobile';
document.querySelector('.nav').appendChild(mobile);

Nice and easy, we create a new <div>, give it ‘nav-mobile’ as the class name (keeping our naming conventions in check) and using the querySelector to append it. It’s pretty safe to use querySelector here as any browser that supports CSS3 media queries I am pretty confident will support querySelector (even IE8 does).

Now we need to style the clickable icon:

.nav-mobile {
  display:none; /* Hide from browsers that don't support media queries */
  cursor:pointer;
  position:absolute;
  top:0;
  right:0;
  background:#34495E url(../img/nav.svg) no-repeat center center;
  height:40px;
  width:40px;
  border-radius:5px;
  -webkit-border-radius:5px;
  -moz-border-radius:5px;
}

I’ve added these styles in the main area of the CSS, not inside any media queries. This is so that the menu can be styled in the main CSS area, and literally tweaked inside our media queries for easy management. It also benefits us again because if you were to style it inside a media query, older browsers would ignore it leaving it unstyled and randomly placed element - which is why it includes ‘display:none;’ by default. This method I’ve found to be the best.

Using an SVG again (pretty confident most browsers will support SVG and media queries, so let’s use it) we create a scalable ‘three-line’ icon. This means we don’t have to do any further optimisation for retina displays.

Going back to our media query, we need to tell it to show our mobile icon for our decided viewport widths:

@media only screen and (min-width: 320px) and (max-width: 768px) {
  .nav-mobile {
    display:block;
  }
}

This simply shows it to the user. But we now we to hide our dropdown list that’s still in clear view, our ‘nav-list’ class:

@media only screen and (min-width: 320px) and (max-width: 768px) {
  .nav-list {
    display:none;
  }
}

Obviously I wouldn’t use a separate media query for each one here, but you can see how it works and where we include the declarations.

Now our button is visible, and our navigation list is hidden, let’s move on…

Hello JavaScript

This is where we get more funky and get some things working. As I mentioned above, JavaScript (overloading mobile/tablet devices) can cause bad results when animating (94kb of jQuery anyone?), so let’s keep it mega simple for best results.

I basically want to setup a simple click handler on the newly appended and styled button so that it opens and closes our navigation when clicked. To do this, I’m not going to use jQuery or animation techniques, for a really nice experience (and instant) I am literally going to change the styles from ‘display:none;’ to ‘display:block;’, and then toggle it back when clicked again.

I’m going to setup a really simple onclick handler to toggle a new ‘nav-active’ class, but first I need to grab some jQuery-style ‘toggleClass’ and ‘hasClass’ functions from a previous post:

// hasClass
function hasClass(elem, className) {
  return new RegExp(' ' + className + ' ').test(' ' + elem.className + ' ');
}

// toggleClass
function toggleClass(elem, className) {
  var newClass = ' ' + elem.className.replace(/[\t\r\n]/g, ' ') + ' ';
    if (hasClass(elem, className)) {
        while (newClass.indexOf(' ' + className + ' ') >= 0 ) {
            newClass = newClass.replace(' ' + className + ' ', ' ');
        }
        elem.className = newClass.replace(/^\s+|\s+$/g, '');
    } else {
        elem.className += ' ' + className;
    }
}

I’ll then use the toggleClass method in my onclick handler (using the querySelector again to grab the elements):

var mobileNav = document.querySelector('.nav-mobile');
var toggle = document.querySelector('.nav-list');
mobileNav.onclick = function() {
  toggleClass(this, 'nav-mobile-open');
  toggleClass(toggle, 'nav-active');
}

And that’s it. JavaScript and mobile performance is amazing, no lagging/juttering as the navigation menu is opened or closed, and we’ve successfully created a great foundation to extend a responsive navigation menu for any project.

The great thing about mobile is they also interpret hover as a touch method, which means if you wanted to add hover capabilities to another nested menu (just like a secondary nested dropdown you could get away with using :hover pseudo selectors to display the nested content).

Here’s the full script for the above tutorial:

(function () {

    // Create mobile element
    var mobile = document.createElement('div');
    mobile.className = 'nav-mobile';
    document.querySelector('.nav').appendChild(mobile);

    // hasClass
    function hasClass(elem, className) {
        return new RegExp(' ' + className + ' ').test(' ' + elem.className + ' ');
    }

    // toggleClass
    function toggleClass(elem, className) {
        var newClass = ' ' + elem.className.replace(/[\t\r\n]/g, ' ') + ' ';
        if (hasClass(elem, className)) {
            while (newClass.indexOf(' ' + className + ' ') >= 0) {
                newClass = newClass.replace(' ' + className + ' ', ' ');
            }
            elem.className = newClass.replace(/^\s+|\s+$/g, '');
        } else {
            elem.className += ' ' + className;
        }
    }

    // Mobile nav function
    var mobileNav = document.querySelector('.nav-mobile');
    var toggle = document.querySelector('.nav-list');
    mobileNav.onclick = function () {
        toggleClass(this, 'nav-mobile-open');
        toggleClass(toggle, 'nav-active');
    };
})();

Thank you for reading!

Learn JavaScript the right way.

The most complete guide to learning JavaScript ever built.
Trusted by 82,951 students.

Todd Motto

with Todd Motto

Google Developer Expert icon Google Developer Expert

Related blogs 🚀

Free eBooks:

Angular Directives In-Depth eBook Cover

JavaScript Array Methods eBook Cover

NestJS Build a RESTful CRUD API eBook Cover