<div class="cp_imghover cp_zoomin">
<img src="img.jpg">
</div>
.cp_imghover {
overflow: hidden;
width: 400px;
height: 400px;
margin: 2em auto;
border: 10px solid #ffffff;
box-shadow: 0 0 5px #cccccc;
cursor: pointer;
}
/*zoomin*/
.cp_zoomin img {
width: 400px;
height: 400px;
-webkit-transition: all 1s ease;
transition: all 1s ease;
}
.cp_zoomin img:hover {
-webkit-transform: scale(1.5,1.5);
transform: scale(1.5,1.5);
}