Búsqueda en el Foro:
Buscar


Autor Mensaje
Mensaje14-11-2008, 00:00 (UTC)    
Título del mensaje: Mi Página y ayuda Cuenta Regresiva

Llevo algunos meses con mi pagina web: indomini.es.tl

Quiero poner una cuenta regresiva que sea confiable, y que se adapte a la hora exacta, no a la que está programada en la pc sino a un servidor externo. Si alguien conoce alguno me lo puede hacer saber!

[Borrado]

Tema movido a problemas generales!


Ultima edición por indomini el Jue Nov 13, 2008 8:14 pm; editado 5 veces
Mensaje14-11-2008, 00:14 (UTC)    
Título del mensaje:

Mensaje14-11-2008, 00:34 (UTC)    
Título del mensaje:

no me sirvio pero gracias de todos modos.
Mensaje14-11-2008, 15:36 (UTC)    
Título del mensaje:

Bueno en el Foro hay muchos temas al respecto. Podrías intentar utilizarlo. Seguramente alguna de las opciones te sirva... te dejo algunas:

didita9 escribió:
Código:
<img src="AQUI VA LA URL DE TU IMAGEN" width="277" height="46">
<form name="count">
<input name="count2" size="42" type="text"/>
</form>
<script>

//change the text below to reflect your own,
var before="Mi cumpleaños"
var current="Hoy es Mi Cumpleaños!"
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
function countdown(yr,m,d){
theyear=yr;themonth=m;theday=d
var today=new Date()
var todayy=today.getYear()
if (todayy < 1000)
todayy+=1900
var todaym=today.getMonth()
var todayd=today.getDate()
var todayh=today.getHours()
var todaymin=today.getMinutes()
var todaysec=today.getSeconds()
var todaystring=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec
futurestring=montharray[m-1]+" "+d+", "+yr
dd=Date.parse(futurestring)-Date.parse(todaystring)
dday=Math.floor(dd/(60*60*1000*24)*1)
dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1)
dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000))/(60*1000)*1)
dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1)
if(dday==0&&dhour==0&&dmin==0&&dsec==1){
document.forms.count.count2.value=current
return
}
else
document.forms.count.count2.value=" "+dday+ " días, "+dhour+" hrs, "+dmin+" min, y "+dsec+" seg "
setTimeout("countdown(theyear,themonth,theday)",1000)
}
//enter the count down date using the format year/month/day
countdown(2008,05,09)
</script>


donde dice:
mi cumpleaños le colocas el nombre del acontecimiento tuyo.
hoy es mi cumpleaños igual aki colocas tu evento
y donde dice:
countdown(2008,05,09) colocas la fecha, en que se termina la cuenta regresiva
Mostrar mensajes anteriores:   


Powered by phpBB © 2001, 2005 phpBB Group