Ver Mensaje Individual
  #39 (permalink)  
Antiguo 08/07/2002, 10:20
Avatar de epa2
epa2
 
Fecha de Ingreso: abril-2002
Ubicación: Málaga
Mensajes: 1.475
Antigüedad: 22 años, 8 meses
Puntos: 9
Re: Busco Script Con Efecto Raton/marco

TE ENVIO EL CODIGO de la última página...

<html>
<title>Precarga de imágenes</title>
<script language="javascript" >
var imgs;
function inicio() {
imgs = new preCarga("C://Mis documentos//M6.gif","C://Mis documentos//M7.gif");
}
var imagen = 1;
function cambio() {
imagen = (imagen == 1) ? 2 : 1;
document.getElementById("dibujo").src = imgs[(imagen - 1)].src;
}
function preCarga() {
if (!document.images) {alert("imágenes no soportadas"); return;}
this.dibujos = new Array();
var args = preCarga.arguments;
for (var i = 0; i < args.length; i++) {
this.dibujos = new Image();
this.dibujos[I].src = args;
}
return this.dibujos;
}
</script>
</head >
<body>
<body onload="inicio()" >
<center>
<img src="C://mis documentos//M6.gif" id=dibujo name=dibujo width="84" height="56">
</center>
</body>
</html>

Bueno, se que estás muy ocupado con el otro tema del foro que lo estais haciendo entre todo, pero
no te olvides de los pobres.

Recibe un saludo.

ByE