DropDown Menu

Size
1,867 Kb
Views
6,072

How do I make an dropdown menu?

Drop down menu Simple CSS Jquery Based. What is a dropdown menu? How do you make a dropdown menu? This script and codes were developed by Miguel Ferreira on 26 January 2023, Thursday.

DropDown Menu Previews

DropDown Menu - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>DropDown Menu</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <ul>	<li class="menu item">Item 1</li>	<li class="menu item">Item 2</li>	<li class="w_sub">Item 3 <ul class="sub_dad">	<li class="son">Sub Item 1</li>	<li class="son">Sub Item 2</li>	</ul> </li>
</ul> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

DropDown Menu - Script Codes CSS Codes

li{ list-style: none; background: navy; width: 100px; height: 20px; padding: 20px; padding-left: 50px; color: white;
}
li >ul li{ background: rgba(255, 0, 0, 0.2); position: relative; left: -90px; top: 23px;
}
.light{ background: rgba(255, 0, 0, 0.5);
}

DropDown Menu - Script Codes JS Codes

$(document).ready(function(){ $('li').find('ul').hide(); $('li').hover(function(){ $(this).toggleClass('light'); }); $('.w_sub').hover(function(){ $('.sub_dad').toggle(); });
});
DropDown Menu - Script Codes
DropDown Menu - Script Codes
Home Page Home
Developer Miguel Ferreira
Username angus
Uploaded January 26, 2023
Rating 3
Size 1,867 Kb
Views 6,072
Do you need developer help for DropDown Menu?

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!

Miguel Ferreira (angus) Script Codes
Create amazing blog posts 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!