Diseño de hora y fecha

  • sase_95
  • Banned
  • Banned
  • Avatar de Usuario
  • Registrado: Ago 27, 2010
  • Mensajes: 17
  • Loc: Neg, MK
  • Status: Offline

Nota Agosto 30th, 2010, 10:29 am

Hola Chicos estoy diseñando un servidor de tiempo y una fecha:
Si usted tiene un sitio web y desea mostrar la hora y fecha que aquí hay una idea!

T iempo
Código: [ Select ]
<html>
<head>
<script type="text/javascript">
function startTime()
{
var today=new Date();
var h=today.getHours();
var m=today.getMinutes();
var s=today.getSeconds();
// add a zero in front of numbers<10
m=checkTime(m);
s=checkTime(s);
document.getElementById('txt').innerHTML=h+":"+m+":"+s;
t=setTimeout('startTime()',500);
}

function checkTime(i)
{
if (i<10)
 {
 i="0" + i;
 }
return i;
}
</script>
<title>Clock</title></head>

<body onLoad="startTime()">
<div id="txt"></div>
</body>
</html>
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function startTime()
  5. {
  6. var today=new Date();
  7. var h=today.getHours();
  8. var m=today.getMinutes();
  9. var s=today.getSeconds();
  10. // add a zero in front of numbers<10
  11. m=checkTime(m);
  12. s=checkTime(s);
  13. document.getElementById('txt').innerHTML=h+":"+m+":"+s;
  14. t=setTimeout('startTime()',500);
  15. }
  16. function checkTime(i)
  17. {
  18. if (i<10)
  19.  {
  20.  i="0" + i;
  21.  }
  22. return i;
  23. }
  24. </script>
  25. <title>Clock</title></head>
  26. <body onLoad="startTime()">
  27. <div id="txt"></div>
  28. </body>
  29. </html>





D comió
Código: [ Select ]
<script language="JavaScript">
<!--
function getCorrectedYear(year) {
year = year - 0;
if (year < 70) return (2000 + year);
if (year < 1900) return (1900 + year);
return year;
}

var lmod = new Date();
var monthname;
var lmonth = lmod.getMonth();
if (lmonth == 0) monthname = "January";
if (lmonth == 1) monthname = "February";
if (lmonth == 2) monthname = "March";
if (lmonth == 3) monthname = "April";
if (lmonth == 4) monthname = "May";
if (lmonth == 5) monthname = "June";
if (lmonth == 6) monthname = "July";
if (lmonth == 7) monthname = "August";
if (lmonth == <!-- s8) --><img src=\"{SMILIES_PATH}/icon_cool.gif\" alt=\"8)\" title=\"Cool\"><!-- s8) --> monthname = "September";
if (lmonth == 9) monthname = "October";
if (lmonth == 10) monthname = "November";
if (lmonth == 11) monthname = "December";

var yearstr = getCorrectedYear(lmod.getYear());

var outstr = monthname + " " + lmod.getDate() + ", " + yearstr;
document.write(outstr);
// -->
</script>
  1. <script language="JavaScript">
  2. <!--
  3. function getCorrectedYear(year) {
  4. year = year - 0;
  5. if (year < 70) return (2000 + year);
  6. if (year < 1900) return (1900 + year);
  7. return year;
  8. }
  9. var lmod = new Date();
  10. var monthname;
  11. var lmonth = lmod.getMonth();
  12. if (lmonth == 0) monthname = "January";
  13. if (lmonth == 1) monthname = "February";
  14. if (lmonth == 2) monthname = "March";
  15. if (lmonth == 3) monthname = "April";
  16. if (lmonth == 4) monthname = "May";
  17. if (lmonth == 5) monthname = "June";
  18. if (lmonth == 6) monthname = "July";
  19. if (lmonth == 7) monthname = "August";
  20. if (lmonth == <!-- s8) --><img src=\"{SMILIES_PATH}/icon_cool.gif\" alt=\"8)\" title=\"Cool\"><!-- s8) --> monthname = "September";
  21. if (lmonth == 9) monthname = "October";
  22. if (lmonth == 10) monthname = "November";
  23. if (lmonth == 11) monthname = "December";
  24. var yearstr = getCorrectedYear(lmod.getYear());
  25. var outstr = monthname + " " + lmod.getDate() + ", " + yearstr;
  26. document.write(outstr);
  27. // -->
  28. </script>

También puede cambiar los nombres de los meses en su propio idioma!

Por lo tanto, eso es!

Lo siento si no era de ninguna ayuda Im apenas un principiante en esto!
Gracias por leer!
  • Anonymous
  • Bot
  • No Avatar
  • Registrado: 25 Feb 2008
  • Mensajes: ?
  • Loc: Ozzuland
  • Status: Online

Nota Agosto 30th, 2010, 10:29 am

  • SpooF
  • ٩๏̯͡๏۶
  • Bronze Member
  • Avatar de Usuario
  • Registrado: May 22, 2004
  • Mensajes: 3415
  • Loc: Richland, WA
  • Status: Offline

Nota Agosto 30th, 2010, 2:11 pm

JavaScript se ejecuta fuera de la máquina cliente tan Im no está seguro de cómo conseguir un servidor de tiempo ;)
#define NULL (::rand() % 2)
  • sase_95
  • Banned
  • Banned
  • Avatar de Usuario
  • Registrado: Ago 27, 2010
  • Mensajes: 17
  • Loc: Neg, MK
  • Status: Offline

Nota Agosto 30th, 2010, 3:46 pm

SpooF escribió:
JavaScript se ejecuta fuera de la máquina cliente tan Im no está seguro de cómo conseguir un servidor de tiempo ;)

Wow lo siento mi error quise decir reloj - tiempo de secuencia de comandos que muestra el tiempo!
:D gif "alt =": D "title =" muy feliz "> Estoy tan nobb:] :D:):P

Publicar Información

  • Total de mensajes en este tema: 3 mensajes
  • Usuarios navegando por este Foro: No hay usuarios registrados visitando el Foro y 148 invitados
  • No puede abrir nuevos temas en este Foro
  • No puede responder a temas en este Foro
  • No puede editar sus mensajes en este Foro
  • No puede borrar sus mensajes en este Foro
  • No puede enviar adjuntos en este Foro
 
 

© 2011 Unmelted, LLC. Ozzu® es una marca registrada de Unmelted, LLC