Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/07/2010, 20:59
liepzingsystem
 
Fecha de Ingreso: diciembre-2009
Ubicación: Guadalajara, Jalisco
Mensajes: 300
Antigüedad: 14 años, 4 meses
Puntos: 13
Respuesta: Problema con miniaturas en galeria de fotos

Hola, Silvana:

Aplica el siguiente código JavaScript entre las etiquetas <head></head> de tu documento HTML. Lo que hará será re-actualizar la página automáticamente para que se carguen correctamente tus miniaturas.

Código Javascript:
Ver original
  1. <script
  2. language="JavaScript"> // CREDITS: // Automatic Page Refresher by
  3. Peter Gehrig and Urs Dudli www.24fun.com // Permission given to use the script
  4. provided that this notice remains as is. // Additional scripts can be found at
  5. http://www.hypergurl.com // Configure refresh interval (in seconds) var refreshinterval=5
  6. // Shall the coundown be displayed inside your status bar? Say "yes"
  7. or "no" below: var displaycountdown="yes" // Do not edit the
  8. code below var starttime var nowtime var reloadseconds=0 var secondssinceloaded=0
  9. function starttime() { starttime=new Date() starttime=starttime.getTime() countdown()
  10. } function countdown() { nowtime= new Date() nowtime=nowtime.getTime() secondssinceloaded=(nowtime-starttime)/1000
  11. reloadseconds=Math.round(refreshinterval-secondssinceloaded) if (refreshinterval>=secondssinceloaded)
  12. { var timer=setTimeout("countdown()",1000) if (displaycountdown=="yes")
  13. { window.status="Page refreshing in "+reloadseconds+ " seconds"
  14. } } else { clearTimeout(timer) window.location.reload(true) } } window.onload=starttime
  15. </script>

Suerte