Last active
April 14, 2020 07:06
-
-
Save generatepress/b84c294f65a34713a6370a9488aa901a to your computer and use it in GitHub Desktop.
Add a cool zoom effect on hover to post images
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
| .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