Hola
infolan
El ejemplo que has puesto está hecho con flash. Puedes hacer algo parecido con JavaScript
:
Código:
<img src="imagen.jpg" style="width:90px; height:90px"
onmouseover = "tamano(this,1)" onmouseout = "tamano(this,0)" />
Código:
function tamano(im,num) {
if (num==0) {
im.style.width = '90px';
im.style.height = '90px';
}
else {
im.style.width = '120px';
im.style.height = '120px';
}
}
Saludos,