site: https://chameleon-tangerine-lbcl.squarespace.com/gallery-tremont
site pass: aspen1928
I've tried everything, but no success. I'm attempting to replicate a Cube Portfolio effect where all images in the gallery page(s) are grayscale until the mouse is hovered - but only the individual image color is revealed, and the image magnifies slightly - not all the images at the same time.
Example: https://gaston.chiuki.com/work/
This code works half-way, but not the hover function.
#collection-63e171c55b32544875cfa03f {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
#collection-63e171c55b32544875cfa03f:hover {
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
}
I've tried every combination I can think of. Can someone help?