Created
May 22, 2015 12:27
-
-
Save dkruchok/dbe7d4b7a92836fd8a1b to your computer and use it in GitHub Desktop.
Выезд меню сбоку боди
This file contains 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
/* 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