Skip to content

Instantly share code, notes, and snippets.

@ZachMoreno
Created August 14, 2013 20:28
Show Gist options
  • Select an option

  • Save ZachMoreno/6235232 to your computer and use it in GitHub Desktop.

Select an option

Save ZachMoreno/6235232 to your computer and use it in GitHub Desktop.
.zoom {
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out;
}
.zoom:hover {
-moz-transform: scale(1.1);
-webkit-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
-ms-transform: scale(1.1);
filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand',
M11=1.1, M12=-0, M21=0, M22=1.1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment