Skip to content

Instantly share code, notes, and snippets.

@pehaa
Created March 28, 2019 05:48
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 pehaa/35d9d28699681f2c0bf0400fb825315d to your computer and use it in GitHub Desktop.
Save pehaa/35d9d28699681f2c0bf0400fb825315d to your computer and use it in GitHub Desktop.
Add interaction to WordPress gallery block
.wp-block-gallery img {
transition: 1s;
}
.wp-block-gallery:hover img {
transform: scale(.95);
filter: grayscale(100%);
}
.wp-block-gallery img:hover {
filter: grayscale(0%);
transform: scale(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment