Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/07/2012, 22:48
Avatar de fjrueda
fjrueda
 
Fecha de Ingreso: marzo-2008
Ubicación: Bucaramanga
Mensajes: 313
Antigüedad: 16 años, 8 meses
Puntos: 35
Respuesta: Cambiar imagen al actualizar mi página y cada ciertos segundos en un mismo

Mire esto ....

Código HTML:
Ver original
  1.  
  2. <p>Click the button to wait 3 seconds, then alert "Hello".</p>
  3. <p>After clicking away the alert box, an new alert box will appear in 3 seconds. This goes on forever...</p>
  4. <button onclick="myFunction()">Try it</button>
  5.  
  6. <script type="text/javascript">
  7. function myFunction()
  8. {
  9. setInterval(function(){alert("Hello")},3000);
  10. }
  11.  
  12. </body>
  13. </html>

y para documentacion .... http://www.w3schools.com/js/js_timing.asp

Intentelo y si logra algo le ayudo a terminarlo.