How to Show and Hide Menu
Submitted by alpha_luna on Wednesday, July 27, 2016 - 13:23.
In this tutorial, we are going to create on How To Show and Hide Menu. We all know that one of the most used frameworks is jQuery. Let us use this to have this tutorial.
Using jQuery it will simplify our source code by using its function.
In this article, we have two links to control the show and hide the menu of Sourcecodester one by one. Here's the source code.
Likewise, repeat the instruction above for showing the menu from top to bottom. This is for the show all link. And this is the source code.
And, this is the HTML source code and the CSS style.
If you are interested in programming, we have an example of programs that may help you even just in small ways.
Share us your thoughts and comments below. Thank you so much for dropping by and reading this blog post. For more updates, don’t hesitate and feel free to visit our website more often and please share this with your friends or email me at [email protected]. Practice Coding. Thank you very much.
By clicking the link, this script will be executed to hide all the menu bottom to top. This is for the hide all link. And this is the source code.
- $('.hideAll').click(function(){
- $(".hideAll").hide();
- $("li").last().hide("slow", function fnCollapse() {
- $(this).prev("li").hide("slow", fnCollapse);
- if(!$(this).prev("li").length)
- $(".showAll").show();
- });
- });
- });
- $(document).ready(function(){
- $(".showAll").hide();
- $('.showAll').click(function(){
- $(".showAll").hide();
- $("li").first().show('slow',function fnExpand() {
- $(this).next("li").show("slow", fnExpand);
- if(!$(this).next("li").length)
- $(".hideAll").show();
- });
- });
- li {
- padding: 10px;
- color: blue;
- list-style:none;
- border: #FFFFFF 2px solid;
- background-color: bisque;
- width: 170px;
- }
- a {
- font-size:18px;
- color: #FFFFFF;
- text-decoration:none;
- background-color: skyblue;
- border:red 1px solid;
- }
- span {
- font-size: 30px;
- font-family:helvitica;
- margin-left:-36px;
- }
Add new comment
- 98 views