Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Problem Solved: Navigation on Scroll

A challenge we recently faced was that we needed to create a Navigation that shows only when scrolling up.

How did we solve it?

Well, firstly, the HTML for the form was created. Keep in mind that while creating the form, Bootstrap was used. Here we have solved the problem using CSS and jQuery.

Some of the useful CSS properties that should be learned are relative font size, columns, relative and absolute positioning. Now, let's move on.

Then, we created the Static Navigation and the navigation that should appear on scroll up.

We created two identical navigations, one beneath the other. The difference was: one should appear when scrolling up and have a different background, while the other should remain static at the top of the page.

In order to do this, these navigations had to have different identifiers.

The navigation that appears on scroll had a class ".navigation-bar-scroll", while the static navigation had a class with a different name so that the styles won't get mixed.

We used the following SCSS for the navigation that appears on the scroll:

.navigation-bar-scroll {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  
  &.is-hidden {
    opacity: 0;
    -webkit-transform: translate(0,-60px);
    transition: .5s ease;
  }
  
  &.is-visible {
    opacity: 1;
    -webkit-transform: translate(0,0);
    transition: .5s ease;
  }
}

Then, we used the following JQuery code to implement the "show on scroll up" functionality.


   var previousScroll = 0;

   $(window).scroll(function(){

     var currentScroll = $(this).scrollTop();
     
     if (currentScroll > 0 && currentScroll  previousScroll){
         window.setTimeout(hideNav, 300);

       } else if (currentScroll == previousScroll) {
         window.setTimeout(visibleNav, 300);
       }
        else {
         window.setTimeout(showNav, 300);
       }
  
       previousScroll = currentScroll;
     }
     
     /* make the scroll navigation disappear when it is scrolled on top */

     if ($(window).scrollTop() 

We have achieved the effect of a navigation appearing when scrolling up. This navigation bar will disappear when the scrolling reaches the top, while the second static navigation will be located at the top of the page. Looks pretty cool, doesn't it?

Here's our final tip: navigations should be identical so users don't get confused. The only difference you can add is a different background color for the navigation that appears on scroll up, so the links of the navigation stay clearly visible on the page with a lot of content.

This is just one of the many ways you could improve the design of your website.

Hope you found this short blog post helpful!

Thank you for reading! :)



This post first appeared on 13 Remote Development Myths, please read the originial post: here

Share the post

Problem Solved: Navigation on Scroll

×

Subscribe to 13 Remote Development Myths

Get updates delivered right to your inbox!

Thank you for your subscription

×