Skip to content

Instantly share code, notes, and snippets.

@julsdelatierra
Created March 19, 2012 05:25
Show Gist options
  • Save julsdelatierra/2096811 to your computer and use it in GitHub Desktop.
Save julsdelatierra/2096811 to your computer and use it in GitHub Desktop.
Input resize animation with css3
input{
width:300px;
-moz-transition-duration:1s;
-webkit-transition-duration:1s;
-o-transition-duration:1s;
transitition-duration:1s;
}
input:hover{
width:500px;
}
input:focus{
width:500px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment