Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 328 Bytes

how-to-scale-an-image-on-hover.md

File metadata and controls

20 lines (17 loc) · 328 Bytes

How to add a nice scaling effect on image hover?

<div class="gallery">
  <figure class="gallery-item">
    <img class="gallery-image" src="img/gallery/gallery-1.jpg" />
  </figure>
</div>
.gallery-image:hover {
  transform: scale(1.1);
  transition: all 0.4s;
}

.gallery-item {
  overflow: hidden;
}