Eğer istersen jquery olarak ta şöyle birşey olabilir.

Demo => http://maskedpirate.net/demos/exmp.php
















Yazı veya İstediğin herhangi bir kod buraya.




<script></script>
<script>
(function(){
var div = $('#box');
div.hover(
function(){
div.animate({
width: '400px',
height: '400px'
});
div.find('img').animate({
width: '400px',
height: '400px'
});
div.find('img').fadeOut(500);
},
function(){
div.animate({
width: '200',
height: '200'
});
div.find('img').animate({
width: '200',
height: '200'
});
div.find('img').fadeIn(500);
});
})();
</script>