jcadima
3/5/2015 - 10:30 PM

Image Zoom effect on hover

Image Zoom effect on hover

.mg-image img {
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
max-width: 100%;
}

.mg-image:hover img {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
<div class="mg-image">
  <img src="image1.jpg">
</div>