Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/04/2006, 03:21
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 23 años
Puntos: 772
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,