Skip to content

Instantly share code, notes, and snippets.

@DrewDouglass
Created December 11, 2015 21:34
Show Gist options
  • Save DrewDouglass/cf5378b50542168721f0 to your computer and use it in GitHub Desktop.
Save DrewDouglass/cf5378b50542168721f0 to your computer and use it in GitHub Desktop.
Bootstrap animated hamburger toggle.
.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