Skip to content

Instantly share code, notes, and snippets.

@generatepress
Last active April 14, 2020 07:06
Show Gist options
  • Select an option

  • Save generatepress/b84c294f65a34713a6370a9488aa901a to your computer and use it in GitHub Desktop.

Select an option

Save generatepress/b84c294f65a34713a6370a9488aa901a to your computer and use it in GitHub Desktop.
Add a cool zoom effect on hover to post images
.post-image {
position: relative;
overflow: hidden;
}
.post-image img {
max-width: 100%;
-moz-transition: all 0.3s;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.post-image:hover img {
-moz-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment