Reloj digital
simplemente eso, un reloj, solo los numeros.
http://www.urbe.biz/Reloj-digital-h112.htm
Ver ejemplo:
simplemente eso, un reloj, solo los numeros.
http://www.urbe.biz/Reloj-digital-h112.htm
Ver ejemplo:
- Código:
<span id="contenedor">
<script>
<!--
function mostrarclock(){
if (!document.all&&!document.getElementById)
return
thelement=document.getElementById? document.getElementById("contenedor"): document.all.contendor
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
var dn="PM"
if (hours<12)
dn="AM"
if (hours>12)
hours=hours-12
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
var ctime=hours+":"+minutes+":"+seconds+" "+dn
thelement.innerHTML="<b style='font-size:15;color:#000000;'>"+ctime+"</b>"
setTimeout("mostrarclock()",1000)
}
window.onload=mostrarclock
//-->
</script>
</span>
Última edición por MISSARG el Dom Dic 20, 2009 6:46 am, editado 1 vez