Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/01/2005, 14:05
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Hola necu

Prueba este código:
Código HTML:
<html>
<head>
<script>
var num=0;
var color=['red','green','blue','yellow']
function cambia() {
  tot=color.length;
  document.getElementById('tabla').style.background=color[num];  
  num++;
  if(num>tot-1) num=0;
}
</script>
</head>
<body onload="setInterval('cambia()',2000)">
<table id="tabla">
<tr><td>Algo</td></tr>
</table>
</body>
</html> 
El número 2000 indica que se cambiará cada 2 segundos.

Saludos,