Skip to content

Instantly share code, notes, and snippets.

@davision
Last active August 8, 2020 10:54
Show Gist options
  • Save davision/bdcc535157608c6af7922bacb08fb48d to your computer and use it in GitHub Desktop.
Save davision/bdcc535157608c6af7922bacb08fb48d to your computer and use it in GitHub Desktop.
Simple animated mobile hamburger menu
#hamburger {
color: white;
font-size: 2rem;
width: inherit;
z-index: 501;
.line {
width: 30px;
height: 4px;
background-color: #ecf0f1;
display: block;
margin: 5px auto;
transition: all 0.3s ease-in-out;
}
&.opened {
.line:nth-child(2) {
opacity: 0;
}
.line:nth-child(1) {
transform: translateY(13px) rotate(45deg);
}
.line:nth-child(3) {
transform: translateY(-5px) rotate(-45deg);
}
}
&:hover {
cursor: pointer;
}
}
// HTML markup
//
// <div id="hamburger">
// <span class="line"></span>
// <span class="line"></span>
// <span class="line"></span>
// </div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment