

HTML
<div class="hovergallery44"><img src="https://s-media-cache-ak0.pinimg.com/originals/ee/ae/5c/eeae5c55b6dfbcca4807d5c9319bbe59.jpg" alt="" width="230" height="250" /><img src="https://s-media-cache-ak0.pinimg.com/564x/34/79/bd/3479bddc986077dc5c070063039be584.jpg" alt="" width="230" height="250" /></div>
CSS
.hovergallery44 img{
border: 2px solid #fff;
border-radius: 10px;
box-shadow: 2px 2px 6px #000000;
-webkit-transform:scale(0.9);
-moz-transform:scale(0.9);
-o-transform:scale(0.9);
-webkit-transition: width 3s, height 3s, background-color 3s,
-webkit-transform 3s;
transition: width 3s, height 3s, background-color 3s, transform 3s;
opacity: 0.8;
margin:5px 5px 5px 5px;
}
.hovergallery44 img:hover{
box-shadow: 2px 2px 3px 3px rgba(143, 143, 143, 0.3);
border: 1px dotted #000;
border-radius: 30px;
opacity: 1;
moz-transform: translate3d(0, 30%, 0); /* position :after pseudo element at bottom of layout initially */
-webkit-transform: translate3d(0, 30%, 0);
transform: translate3d(0, 30%, 0);
}