Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/05/2002, 14:04
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Re: efecto de niebla sobre imagenes

Hola, Darksoft. Sacado del ScriptMaster:
Código:
<html>
<head>
<style type="text/css">
#im {
FILTER: alpha(opacity=50)
}
</style>

<script language="JavaScript1.2">
function high(which2)
{
theobject=which2;
highlighting=setInterval("highlightit(theobject)",50);
	
}
function low(which2)
{
clearInterval(highlighting);
which2.filters.alpha.opacity=50;
}
function highlightit(cur2)
{
if(cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=5
else if(window.highlighting)
clearInterval(highlighting)
}
</script>

</head>

<body>
<img id="im" src="tuImagen.gif" width="105" height="46"
onmouseover="high(this)" onmouseout="low(this)" >
</body>
</html>
Saludos,

---------------
Pregunta lo que ignoras y pasarás por ton.to 5 minutos.
No lo preguntes y serás ton.to toda la vida.