Skip to content

Instantly share code, notes, and snippets.

@malinky
Created February 12, 2015 13:43
Show Gist options
  • Save malinky/d3b24632010b87d8fb3e to your computer and use it in GitHub Desktop.
Save malinky/d3b24632010b87d8fb3e to your computer and use it in GitHub Desktop.
CSS3 Transform Scale
/*
* 1. Stop image blurring on scale.
*/
img {
transition: transform 0.15s ease-in-out;
backface-visibility: hidden; /* 1 */
transform: translateZ(0); /* 1 */
}
img:hover {
transform: scale(1.04);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment