Created
September 8, 2015 10:22
-
-
Save sathvikc/f4866269780352d75f68 to your computer and use it in GitHub Desktop.
hover search box animation
This file contains hidden or 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
<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