Skip to content

Instantly share code, notes, and snippets.

@madalinignisca
Last active March 2, 2016 09:49
Show Gist options
  • Save madalinignisca/9211e76fa9e22e75b6c2 to your computer and use it in GitHub Desktop.
Save madalinignisca/9211e76fa9e22e75b6c2 to your computer and use it in GitHub Desktop.
Bootstrap Burger animated icon to X
// 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)
$(".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