Toy usando este script para rotar baners
http://www.forosdelweb.com/showthrea...605#post276605
Pero la primer imagen me sale vacia, truncada. Entonces hice un Copi/paste del ejemplo y tambien me sale la primer imagen truncada.
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="javascript">
var imagenes=new Array()
imagenes[0]=new Image (100,120);
imagenes[0].src="1.jpg"
imagenes[1]=new Image (100,120);
imagenes[1].src="2.jpg"
imagenes[2]=new Image (100,120);
imagenes[2].src="3.jpg"
imagenes[3]=new Image (100,120);
imagenes[3].src="4.jpg"
cont=0
function presImagen()
{
if (document.all){
document.getElementById('foto').filters.blendTrans .apply()
document.getElementById('foto').src=imagenes[cont].src
document.getElementById('foto').filters.blendTrans .play()
}
else
{
document.images.foto.src = imagenes[cont].src
}
if (cont < imagenes.length-1)
{cont ++}
else
{cont=0}
tiempo=window.setTimeout('presImagen()',5000)
}
//imagen1.filters.blendTrans.apply();
//document.images.imagen1.src = img;
//imagen1.filters.blendTrans.play();
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000" onLoad="presImagen()">
<img id="foto" src="alenanene.jpg" style="filter:blendTrans(duration=3)">
</body>
</html>
Y esto me ocaciona un error feo.