Skip to content

Instantly share code, notes, and snippets.

@atorvawork
Created October 10, 2017 00:17
Show Gist options
  • Save atorvawork/b8f5c8ccf2bb68e5f83e89bab1252401 to your computer and use it in GitHub Desktop.
Save atorvawork/b8f5c8ccf2bb68e5f83e89bab1252401 to your computer and use it in GitHub Desktop.
меню гамбургер
js:
$(document).ready(function(){
$('.mobile-menu').click(function(){
$('.menu').slideToggle(1500);
return false
});
});
css:
.mobile-menu {
background: transparent;
border: none;
color: #222;
height: 55px;
width: 55px;
font-size: 2.5rem;
display: block;
margin: 0 auto; }
.mobile-menu:focus {
outline: none; }
html:
<button class="mobile-menu"><i class="fa fa-bars" aria-hidden="true"></i></button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment