Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/05/2002, 14:15
FeO
 
Fecha de Ingreso: abril-2002
Mensajes: 15
Antigüedad: 22 años, 9 meses
Puntos: 0
ayuda con mostrar una imagen distinta....

como hago para ponerle un tamaño a la imagen que va a aparecer? (whidth=, height=)

<html>
<body>
<script language="javascript">

<!--
function VecImagenes()
{
n=0;
this[n++]="imag1.jpg";
this[n++]="imag2.jpg";
this[n++]="imag3.jpg"
this.N=n;
}
var Imagenes=new VecImagenes();
src= Imagenes[ Math.floor(Math.random() * Imagenes.N) ] ;
document.write("<img SRC="+src+">");
//-->

</script>

</body>
</html>