Skip to content

Instantly share code, notes, and snippets.

@manbearwolf
Last active December 4, 2016 10:08
Show Gist options
  • Save manbearwolf/99183e48792416485e49f51f7697f730 to your computer and use it in GitHub Desktop.
Save manbearwolf/99183e48792416485e49f51f7697f730 to your computer and use it in GitHub Desktop.
/* CSS image zoom effect http://www.spiceupyourblog.com */
.post img {
height: 100%;
width: 100%;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.post img:hover {
width: 150%;
height: 150%;
}
/*CSS image zoom effect http://www.spiceupyourblog.com */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment