Free Responsive Navigation Menu using CSS and jQuery

After long time, I’m going to share a new post “Free Responsive Navigation Menu using CSS and jQuery” which I found recently in github and it was very help to me in my earlier project. Now a days, all the website owners are updating their sites to responsive due to increase in mobile usage by people all over the world.

Here is the free responsive menu using css and jQuery which I used in my website project. Its called okayNav menu

free responsive navigation menu using css and jquery

This menu automatically collapse into off-screen navigation as well.

HTML Code

<header id="header">
<a class="site-logo" href="#">
Logo
</a>

<nav role="navigation" id="nav-main" class="okayNav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contacts</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Testimonials</a></li>
</ul>
</nav>
</header>

 

jQuery code

You need to use jQuery plugin inorder to get the swipe effect

<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="js/jquery.okayNav.js"></script>
<script type="text/javascript">
var navigation = $('#nav-main').okayNav();
</script>
View Live Demo

Credit – https://github.com/VPenkov

You May Also Like

Never Miss Any Web Tutorials, Guides, Tips and Free eBooks

Join Our Community Of 50,000+ Web Lovers and get a weekly newsletter in your inbox

 

I hate spam too. Unsubscribe at any time.

1 thought on “Free Responsive Navigation Menu using CSS and jQuery”

Leave a Comment