Skip to content

Instantly share code, notes, and snippets.

@Waidoss
Forked from agragregra/mobile-menu.html
Created May 4, 2016 20:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Waidoss/88d82ffe906ee015aefc18389819490d to your computer and use it in GitHub Desktop.
Save Waidoss/88d82ffe906ee015aefc18389819490d to your computer and use it in GitHub Desktop.
Mobile Menu Toggle Button | http://codepen.io/agragregra/pen/bEbbmZ
<!-- HTML -->
<a href="#" class="toggle-mnu hidden-lg"><span></span></a>
<!-- SASS -->
.toggle-mnu
display: block
width: 28px
height: 28px
margin-top: 14px
span:after, span:before
content: ""
position: absolute
left: 0
top: 9px
span:after
top: 18px
span
position: relative
display: block
span, span:after, span:before
width: 100%
height: 2px
background-color: #fff
transition: all 0.3s
backface-visibility: hidden
border-radius: 2px
&.on span
background-color: transparent
&.on span:before
transform: rotate(45deg) translate(-1px, 0px)
&.on span:after
transform: rotate(-45deg) translate(6px, -7px)
<!-- jQuery -->
$(".toggle-mnu").click(function() {
$(this).toggleClass("on");
$(".main-mnu").slideToggle();
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment