Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/12/2002, 18:37
Avatar de KarlanKas
KarlanKas
Moderador extraterrestre
 
Fecha de Ingreso: diciembre-2001
Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 22 años, 4 meses
Puntos: 61
Creo que este código es del depósito de Javascript...

Código:
<html>
<head>
	<title>Untitled</title>
	<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>
<a href="www.forosdelweb.com">
<img 	style="filter:alpha(opacity=50)"
		src="http://www.forosdelweb.com/images/logos/navidad2002/logo01.gif"
		alt="" 
		border="0" 
		onmouseover="high(this)" 
		onmouseout="low(this)">
</a>


</body>
</html>
Solo tienes que tener claro que a las imágenes les tienes uqe aplicar el esilo uqe está en negrita.
__________________
Cómo escribir

No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia.