Hola alguien me puede explicar esto :
<!-- 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(theobje ct)",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)">
-----------------------------------------
Se supone que es un efecto para cuando pase el puntero del mouse sobre una imagen
Lo que pasa es que no le entendi al segundo paso , osea, como que ponga dentro del "tag IMG"??, alguien me puede poner un ejemplo de como debo colocarlo?? :P
Gracias!! ;)