19/12/2004, 05:52
|
| Moderador extraterrestre | | Fecha de Ingreso: diciembre-2001 Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 23 años Puntos: 61 | |
Espera... puedes probar esto:
<html>
<head>
<title>Untitled</title>
<script>
function cargar(){
for(a=0;a<document.images.length;a++){
document.images[a].style.filter="alpha(opacity=3)";
document.images[a].style.cursor="hand";
document.images[a].onmouseover=function pepote(){this.filters.alpha.opacity +=97;};
document.images[a].onmouseout=function pepote2(){this.filters.alpha.opacity -=97;};
}
}
</script>
</head>
<body onload="cargar()">
<img src="http://www.karlankas.net/karlankas.jpg"><br>
<img src="http://www.karlankas.net/chufa2.jpg"><br>
<img src="http://www.karlankas.net/nieve.jpg"><br>
</body>
</html>
__________________ Cómo escribir
No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia. |