Last active
December 11, 2015 20:18
-
-
Save flexbox/4653983 to your computer and use it in GitHub Desktop.
zoom img using CSS3 transition & transform
This file contains 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
.map { | |
display: block; | |
overflow: hidden; | |
} | |
.map span{ | |
display: block; | |
height: 250px; | |
background:url(../img/map.jpg) no-repeat top left; | |
transition: transform 0.2s linear 0s; | |
} | |
.map:hover span{ | |
background-position:0 -250px; | |
transform: scale(1.25); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment