05/06/2003, 14:29
|
| | Fecha de Ingreso: mayo-2003
Mensajes: 23
Antigüedad: 21 años, 8 meses Puntos: 0 | |
imagene semitransparente tengo este scrpit que hace q una imagen quando pases el cursor por encima de ella se canvie de semitransparente a la imgen normal
xo no se dnd pongo la uybicacion de la imagne
<!-- PRIMER PASO: Colocar dentro del tag 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>
<!-- SEGUNDO PASO: Colocar dentro del tag IMG -->
<img id="im" onmouseover="high(this)" onmouseout="low(this)"> |