Popup navigation can add a lot of usability to you site when viewing it on smaller devices such as smart phones. An example of this functionality can be viewed on the Starbucks website.
![]() | |
Navigation Hidden |
![]() | |
Navigation Visible |
The idea is to include a button to toggle the visibility of the navigation on and off. I will include some jQuery animation to slowly grow and shrink the navigation box just like the Starbucks website does.
Fist you will need a button to display control the animation.
Example:
Second, create a container with an unordered list for the navigation content.
Example:
Third, style the CSS to hide the popup navigation container.
Example:
Fourth, create jQuery code to detect the HTML content of the button and grow or shrink the popup navigation container.
Example:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
$(document).ready(function () { | |
$("#btnPopup").click(function () { | |
var div = $("#popup-nav-content"); | |
var btn = $("#btnPopup"); | |
var btnHTML = btn.html(); | |
if (btnHTML == "Show Nav") { | |
btn.html("Hide Nav"); | |
div.css("display", "block"); | |
div.animate({ height: '300px' }, "slow"); | |
} | |
else | |
{ | |
btn.html("Show Nav"); | |
div.animate({ height: '0px' }, "slow"); | |
} | |
}); | |
}); | |
</script> |
Click ((here)) for the project code.
Click ((here)) for demonstration of the code. Make sure you size your browser below 1000px width to see this effect.
No comments:
Post a Comment