Created
June 30, 2016 14:55
-
-
Save rob0t7/10e3ec57574cd9b49503b55fadda2f0d to your computer and use it in GitHub Desktop.
OXmbNK
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
<div id="container"> | |
<img src="http://i.imgur.com/ls5qG.jpg"> | |
</div> |
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
#container { | |
width: 300px; | |
height: 300px; | |
margin: 10px auto; | |
border: 1px solid black; | |
border-radius: 10px; | |
overflow: hidden; | |
} | |
#container img { | |
width: 100%; | |
height: 100%; | |
transition: all 1s ease; | |
} | |
#container img:hover { | |
transform: scale3D(2, 2, 1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment