Skip to content

Instantly share code, notes, and snippets.

@takuyan
Last active December 11, 2015 20:18
Show Gist options
  • Save takuyan/4654192 to your computer and use it in GitHub Desktop.
Save takuyan/4654192 to your computer and use it in GitHub Desktop.
$("body")
.on('click', '#binder_open', function(){
$(this).addClass("hide");
$("#binder").addClass("open");
$("html,body").animate({ scrollTop: 0}, 600);
})
.on("click", "#binder .binder_close, #footer_close", function(){
$("#binder_open").removeClass("hide");
$("#binder").removeClass("open");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment