This is adapted from this Codepen
Last active
March 2, 2016 09:49
-
-
Save madalinignisca/9211e76fa9e22e75b6c2 to your computer and use it in GitHub Desktop.
Bootstrap Burger animated icon to X
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
// Animated Burger | |
.navbar-toggle | |
.icon-bar | |
&:nth-of-type(3) | |
top: 1px | |
&:nth-of-type(4) | |
top: 2px | |
position: relative | |
transition: all 500ms ease-in-out | |
&.active | |
.icon-bar | |
&:nth-of-type(2) | |
top: 6px | |
transform: rotate(-45deg) | |
&:nth-of-type(3) | |
background-color: transparent | |
&:nth-of-type(4) | |
top: -6px | |
transform: rotate(45deg) |
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").on("click", function () { | |
$(this).toggleClass("active"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment