Nav for Mobile

Size
1,896 Kb
Views
6,072

How do I make an nav for mobile?

What is a nav for mobile? How do you make a nav for mobile? This script and codes were developed by Hemant Aggarwal on 09 January 2023, Monday.

Nav for Mobile Previews

Nav for Mobile - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Nav for Mobile</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <a id="button">NAV</a>
<br>
<nav id="nav"> <ul> <li><a href="#">1</a></li> <li><a href="#">2</a></li> <li><a href="#">3</a></li> <li><a href="#">4</a></li> <li><a href="#">5</a></li> </ul>
</nav> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Nav for Mobile - Script Codes CSS Codes

#nav ul { list-style-type:none; content=""; display:table; padding:0 6px;}
#nav ul li { margin:0; padding:0;}
#nav ul li a { text-decoration:none; color:#fff;}
#button { float:right; cursor:pointer;}
.hide2 { display:none; }
#nav { position:absolute; right:0; transition:all 1s; background:#000; content=""; display:none; }

Nav for Mobile - Script Codes JS Codes

$('#nav').css({'display':'block'});
height=$('#nav').height();
$('#nav').css({'height':'0'});
$('#button').click(function(){ if($('#nav').css('height')=='0px'){ $('#nav').animate({height: height}, 100); } else { $('#nav').css({'height':'0px'}); }
});
//alert("hi");
Nav for Mobile - Script Codes
Nav for Mobile - Script Codes
Home Page Home
Developer Hemant Aggarwal
Username mstoic
Uploaded January 09, 2023
Rating 3
Size 1,896 Kb
Views 6,072
Do you need developer help for Nav for Mobile?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Hemant Aggarwal (mstoic) Script Codes
Create amazing web content with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!