Just a css sample

Hello World

Mouse Over

<style>

#picture{

opacity:0;

transition: all 0.5s ease;

transform: scale(0.8);

}

#picture:hover{

opacity:1;

transition: all 0.5s ease;

cursor: pointer;

transform: scale(1.0);

}

</style>