Skip to content

Instantly share code, notes, and snippets.

@rob0t7
Created June 30, 2016 14:55
Show Gist options
  • Save rob0t7/10e3ec57574cd9b49503b55fadda2f0d to your computer and use it in GitHub Desktop.
Save rob0t7/10e3ec57574cd9b49503b55fadda2f0d to your computer and use it in GitHub Desktop.
OXmbNK
<div id="container">
<img src="http://i.imgur.com/ls5qG.jpg">
</div>
#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