Skip to content

Instantly share code, notes, and snippets.

@dmarsale
dmarsale / search_div_slide.js
Created March 20, 2017 14:52
Slide Div up and down
/*Search sliding*/
$(".sprite-search").click(function(){
slideUp();
});
$("#fullscreen-close-button").click(function(){
slideDown();
});
function slideUp(){
$(".searchOverlay").show().animate({ "top":"0px" },50);