Skip to content

Instantly share code, notes, and snippets.

@scottwyden
Created March 14, 2018 11:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottwyden/17dc46891912bb0ec54809372c13eff1 to your computer and use it in GitHub Desktop.
Save scottwyden/17dc46891912bb0ec54809372c13eff1 to your computer and use it in GitHub Desktop.
NextGEN Gallery Thumbnail Expanding
.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