Menu hover glow | Html Css Navbar Link Animation

Menu hover glow | Html Css Navbar Link Animation

Menu hover glow | Html Css Navbar Link Animation


Welcome🎉 to Code With Random blog. In this blog, we learn how to create a Menu hover glow. We use HTML & CSS  for  Menu hover glow on hover. Hope you enjoy our blog so let’s start with a basic HTML structure for the  Menu hover glow on the hover. 

HTML code

 <ul>  
<li style="--clr:#00ade1">
<a href="#" data-text="&nbsp;Home">&nbsp;Home&nbsp;</a>
</li>
<li style="--clr:#ff6492">
<a href="#" data-text="&nbsp;About">&nbsp;About&nbsp;</a>
</li>
<li style="--clr:#ffdd1c">
<a href="#" data-text="&nbsp;Services">&nbsp;Services&nbsp;</a>
</li>
<li style="--clr:#00dc82">
<a href="#" data-text="&nbsp;Blog">&nbsp;Blog&nbsp;</a>
</li>
<li style="--clr:#dc00d4">
<a href="#" data-text="&nbsp;Contact">&nbsp;Contact&nbsp;</a>
</li>
</ul>

There is all HTML code for the Menu hover glow on hover. Now, you can see output without CSS, then we write CSS for the Menu hover glow.

Output

Menu hover glow | Html Css Navbar Link Animation

CSS code

 @import url('https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&display=swap');  
* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: 'Mochiy Pop One', sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #252839;
}
ul {
position: relative;
display: flex;
flex-direction: column;
gap: 30px;
}
ul li {
position: relative;
list-style: none;
}
ul li a {
font-size: 4em;
text-decoration: none;
letter-spacing: 2px;
line-height: 1em;
text-transform: uppercase;
color: transparent;
-webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}
ul li a::before {
content: attr(data-text);
position: absolute;
color: var(--clr);
width: 0;
overflow: hidden;
transition: 1s;
border-right: 8px solid var(--clr);
-webkit-text-stroke: 1px var(--clr);
}
ul li a:hover::before {
width: 100%;
filter: drop-shadow(0 0 25px var(--clr))
}

Now we have completed our CSS section,  Here is our final updated output CSS.

Final Output

Menu hover glow | Html Css Navbar Link Animation

Now we have completed our CSS section,  Here is our updated output with CSSHope you like the   Menu hover glow on hover, you can see output project screenshots. See our other blogs and gain knowledge in front-end development. Thank you 🙏💕

In this post, we learn how to create a Menu hover glow on hover using simple HTML & CSS. If we made a mistake or any confusion, please drop a comment to reply or help you in easy learning.

Written by – Code With Random/Anki 

code by – Ashton

Check out more…..





Leave a Reply