Views Hover Effects Grid

Request Type: 
Feature Request
Author: 
Alex Hu
Issue/Request: 
I am attempting to experiment with some new designs for the Yale Humanities Page. I was wondering whether there is any way to have hover effects like https://www.yale.edu/research-collections/museums-galleries
 

Hi Alex,

You will be looking at CSS transition hover effects. Here is a example of a code.

.img-hover-zoom {
  height: 300px; /* [1.1] Set it as per your need */
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform .5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.5);
}