-
-
Save DrewDouglass/cf5378b50542168721f0 to your computer and use it in GitHub Desktop.
Bootstrap animated hamburger toggle.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.navbar-toggle .icon-bar:nth-of-type(2) { | |
top: 1px; | |
} | |
.navbar-toggle .icon-bar:nth-of-type(3) { | |
top: 2px; | |
} | |
.navbar-toggle .icon-bar { | |
position: relative; | |
transition: all 500ms ease-in-out; | |
} | |
.navbar-toggle.active .icon-bar:nth-of-type(1) { | |
top: 6px; | |
transform: rotate(45deg); | |
} | |
.navbar-toggle.active .icon-bar:nth-of-type(2) { | |
background-color: transparent; | |
} | |
.navbar-toggle.active .icon-bar:nth-of-type(3) { | |
top: -6px; | |
transform: rotate(-45deg); | |
} | |
//Don't forget the JS. | |
$(".navbar-toggle").on("click", function () { | |
$(this).toggleClass("active"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment