DIEGO_ariel
Usuario Novato
Usuario Novato

ESTES ES SCRIPT





<SCRIPT LANGUAGE="JavaScript">
<!--hide
function time_of_day()
{
this.document.write('<FORM NAME="clock" onSubmit="0"><INPUT TYPE="text" NAME="face" SIZE=9 VALUE=""></FORM>');
}

var timerID = null;
var timerRunning = false;
var hours;
var minutes;
var seconds;
var ampm;
var displayhours;

function stopclock()
{
if(timerRunning)
clearTimeout(timerID);
timerRunning = false;
}

function startclock()
{
// Make sure the clock is stopped
stopclock();
hours = 19;
minutes = 13;
seconds = 8;
if (hours >= 12)
ampm="PM";
else
ampm="AM";
if (hours > 12)
displayhours = hours - 12;
else if (hours == 0)
displayhours = 12;
else
displayhours = hours;
showtime();
}

function showtime()
{
seconds++;
if (seconds >= 60)
{
seconds -= 60;
minutes++;
if (minutes >= 60)
{
minutes -= 60;
hours++;
if (hours > 23)
hours -= 24;
if (hours >= 12)
ampm="PM";
else
ampm="AM";
if (hours > 12)
displayhours = hours - 12;
else if (hours == 0)
displayhours = 12;
else
displayhours = hours;
}
}
var timeValue = "" + displayhours;
timeValue += ((minutes < 10) ? ":0" : ":&quotGiño + minutes;
timeValue += ((seconds < 10) ? ":0" : ":&quotGiño + seconds;
timeValue += ampm;
document.clock.face.value = timeValue;
timerID = setTimeout("showtime()",972);
timerRunning = true;
}

time_of_day();
startclock();
//End Hiding-->
</script>

Avatar Image
Nació y murió en el foro
Nació y murió en el foro

yo tengo puesto este:

<html>
<head>
<title>Reloj con Javascript</title>
<script language="JavaScript">
function mueveReloj(){
momentoActual = new Date()
hora = momentoActual.getHours()
minuto = momentoActual.getMinutes()
segundo = momentoActual.getSeconds()

str_segundo = new String (segundo)
if (str_segundo.length == 1)
segundo = "0" + segundo

str_minuto = new String (minuto)
if (str_minuto.length == 1)
minuto = "0" + minuto

str_hora = new String (hora)
if (str_hora.length == 1)
hora = "0" + hora

horaImprimible = hora + " : " + minuto + " : " + segundo

document.form_reloj.reloj.value = horaImprimible

setTimeout("mueveReloj()",1000)
}
</script>
</head>

<body onload="mueveReloj()">

<center>
<form name="form_reloj">
<input type="text" name="reloj" size="10" style="background-color : Black; color : White; font-family : Verdana, Arial, Helvetica; font-size : 8pt; text-align : center;" onfocus="window.document.form_reloj.reloj.blur()">
</form>
</center>
</body>

</html>

Avatar Image
Come y duerme en el foro
Come y duerme en el foro

Yo no pongo relojes porque como uso directamente el reloj que tengo en la barra de herramientas de mi escritorio, asumo que los demás hacen lo mismo.

Y no me tomen a mal, pero creo que el uso de relojes en páginas web, lo único que provocan es demorar el tiempo de carga de la página.

ATENCIÓN: Este tema no tiene actividad desde hace más de 6 MESES,
te recomendamos abrir un nuevo tema en lugar de responder al actual
Opciones:
Ir al subforo:
Permisos:
TU NO PUEDES Escribir nuevos temas
TU NO PUEDES Responder a los temas
TU NO PUEDES Editar tus propios mensajes
TU NO PUEDES Borrar tus propios mensajes
Temas similares
No se han encontrado temas similares