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