Skip to content

Instantly share code, notes, and snippets.

@sathvikc
Created September 8, 2015 10:22
Show Gist options
  • Save sathvikc/f4866269780352d75f68 to your computer and use it in GitHub Desktop.
Save sathvikc/f4866269780352d75f68 to your computer and use it in GitHub Desktop.
hover search box animation
<div id="search">
<input type="text" style="width:20px"/>
</div>
<script>
$("#search input").hover(function() {
$(this).animate({
width:"200px",
},800);
$(this).css("background-position","right");
}, function() {
$(this).animate({
width:"20px",
},800);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment