Вы даже можете сделать это с помощью jQuery:
jQuery(this).hover(function() {
jQuery(this).animate({
marginTop: '-10px', //Bring image to top a little bit
marginLeft: '-10px',
width: '30px', //Zoom by 30 px
height: '30px'
}, 500); /* 500 is the speed of how fast/slow image animates */
} , function() {
jQuery(this).animate({
width: '15px', //Bring image back to original size
height: '15px'
}, 500);
});