Efek hover pada menu, menggunakan animasi border dan zoom background.
<ul> <li><a href="#">home</a></li> <li><a href="#">about</a></li> <li><a href="#">services</a></li> <li><a href="#">team</a></li> <li><a href="#">contact</a></li> </ul>
@import url(https://fonts.googleapis.com/css?family=Raleway:400,500,800);
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Raleway', Arial, sans-serif;
}
ul {
margin: 0;
padding: 0;
display: flex;
}
li {
list-style: none;
}
a {
position: relative;
display: block;
padding: 15px 30px;
text-decoration: none;
text-transform: uppercase;
color: #222;
font-size: 22px;
font-weight: bold;
transition: 0.5s;
}
a:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transform: scaleY(2);
transition: 0.5s;
border-top: 2px solid black;
border-bottom: 2px solid black;
}
a:hover:before {
transform: scaleY(1.2);
opacity: 1;
}
a:after {
content: "";
position: absolute;
top: 2px;
left: 0;
width: 100%;
height: 100%;
background-color: #222;
transition: 0.5s;
transform: scale(0);
z-index: -1;
}
a:hover:after {
transform: scale(1);
}
a:hover {
color: white;
}