CSS3 Background Size “Zoom”
by borayeris
HTML
<div class="abc">
hey
</div>
CSS
.abc{
width: 161px;
height: 149px;
background: url(http://3.bp.blogspot.com/_HGPPifzMEZU/Rw4ujF12G3I/AAAAAAAAAWI/bc1ppSb6eKA/s320/estrelas_09.gif) no-repeat center center;
background-size: 100% 100%;
transition: all 1s ease-in;
}
.abc:hover{background-size: 130% 130%}