Created
February 12, 2015 13:43
-
-
Save malinky/d3b24632010b87d8fb3e to your computer and use it in GitHub Desktop.
CSS3 Transform Scale
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
/* | |
* 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