Skip to content

Instantly share code, notes, and snippets.

@dkruchok
Created May 22, 2015 12:27
Show Gist options
  • Save dkruchok/dbe7d4b7a92836fd8a1b to your computer and use it in GitHub Desktop.
Save dkruchok/dbe7d4b7a92836fd8a1b to your computer and use it in GitHub Desktop.
Выезд меню сбоку боди
/* Push the body and the nav over by 285px over
$('.nav.burger a').click(function() {
$('.hidden_menu').animate({
left: "0px"
}, 200);
$('body').animate({
left: "285px"
}, 200);
});*/
/*Then push them back
$('.icon-close').click(function() {
$('.hidden_menu').animate({
left: "-285px"
}, 200);
$('body').animate({
left: "0px"
}, 200);
});*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment