CSS Gallery Hover Zoom

Hover effects can zoom images.

Preview

Code

<style>
.gallery img{
width:120px;
transition:transform 0.3s;
}

.gallery img:hover{
transform:scale(1.2);
}
</style>

<div class="gallery">
<img src="https://picsum.photos/220/120">
<img src="https://picsum.photos/221/120">
</div>

More CSS Image Gallery Examples (9)