Ejemplo aqui
Tenemos las siguientes imagenes secuenciales
paloma1.png, paloma2.png... paloma9.png
<!DOCTYPE html>
<html>
<head>
<style>
#home {
width: 580px;
height: 215px;
}
</style>
</head>
<body onload="setInterval(anima,400)">
<img id="next" src="paloma1.png" width="160px">
<script>
var x=0;
function anima() {
x = x + 1;
var cad="";
cad = "paloma" + x + ".png";
document.getElementById("next").src = cad;
if (x>8) { x=0; }
}
</script>
</body>
</html>
No hay comentarios:
Publicar un comentario