Navigation Menu Hover Effect

Developer
Size
1,859 Kb
Views
8,096

How do I make an navigation menu hover effect?

What is a navigation menu hover effect? How do you make a navigation menu hover effect? This script and codes were developed by Kazu on 28 October 2022, Friday.

Navigation Menu Hover Effect Previews

Navigation Menu Hover Effect - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Navigation Menu Hover Effect</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <ul class="navigation"> <li class="current"><a href="#">Home</a></li> <li><a href="#">About Us</a></li> <li><a href="#">Blog</a></li> <li><a href="#">Services</a></li> <li><a href="#">Products</a></li> <li><a href="#">Contact</a></li>
</ul>
</body>
</html>

Navigation Menu Hover Effect - Script Codes CSS Codes

@import url(https://fonts.googleapis.com/css?family=Raleway:400,500);
.navigation { font-family: 'Raleway', Arial, sans-serif; text-align: center; text-transform: uppercase; font-weight: 500;
}
.navigation * { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-transition: all 0.35s ease; transition: all 0.35s ease;
}
.navigation li { display: inline-block; list-style: outside none none; margin: 0 0.8em; padding: 0;
}
.navigation a { display: inline-block; padding: 0.5em 17px; color: rgba(255, 255, 255, 0.5); position: relative; letter-spacing: 1px; text-decoration: none;
}
.navigation a:before { content: ""; position: absolute; top: -10px; left: 0; border-top: 3px solid #6AC506; -webkit-transition: all 0.35s ease; transition: all 0.35s ease; height: 3px; width: 100%;
}
.navigation a:hover:before { top: 0;
}
.navigation a:hover { color: #fff;
}
/* Demo purposes only */
body { background-color: #212121; padding: 50px 0;
}
Navigation Menu Hover Effect - Script Codes
Navigation Menu Hover Effect - Script Codes
Home Page Home
Developer Kazu
Username carmerano
Uploaded October 28, 2022
Rating 3
Size 1,859 Kb
Views 8,096
Do you need developer help for Navigation Menu Hover Effect?

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!

Kazu (carmerano) 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!