Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/06/2005, 03:42
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 2 meses
Puntos: 772
Hola Blashete

Te pongo un ejemplo:
Código PHP:
<html>
<
head>
<
script>
function 
ilumina (obj) {
  
obj.style.filter='alpha(opacity=100)';
  
obj.style.opacity=1;
}
function 
apaga (obj) {
  
obj.style.filter='alpha(opacity=50)';
  
obj.style.opacity=.5;
}
</script>
</head>
<body>
<img src="imagen1.jpg" style="filter:alpha(opacity=50); opacity:.5" 
onmouseover="ilumina(this)" onmouseout="apaga(this)" />
</body>
</html> 
Saludos,