-
-
Save scottwyden/17dc46891912bb0ec54809372c13eff1 to your computer and use it in GitHub Desktop.
NextGEN Gallery Thumbnail Expanding
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
.ngg-gallery-thumbnail img{ | |
-webkit-transition: all 0.3s ease-in-out; | |
-moz-transition: all 0.3s ease-in-out; | |
-o-transition: all 0.3s ease-in-out; | |
-ms-transition: all 0.3s ease-in-out; | |
transition: all 0.3s ease-in-out; | |
} | |
.ngg-gallery-thumbnail img:hover{ | |
-webkit-transform: scale(1.1); | |
-moz-transform: scale(1.1); | |
-o-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