Categories :

CSS Mouseover Zoom Effect

Mouseover Zoom Effect

Use this CSS

<style>
.image{
-webkit-transition: 0.4s ease;
transition: 0.4s ease;
-moz-transform:0.4s ease;
}

.image:hover{
opacity: 0.8;
transform: scale(1.05);
-webkit-transform: scale(1.08);
-moz-transform: scale(1.08);
}
</style>

Leave a Reply

Your email address will not be published. Required fields are marked *