Время.
<html> <head> <title>Время.</title> <script language="JavaScript"> <!-- ndata = new Date(); hours = ndata.getHours(); mins = ndata.getMinutes(); secs = ndata.getSeconds(); if (hours < 10) {hours = "0" + hours } if (mins < 10) {mins = "0" + mins } if (secs < 10) {secs = "0" + secs } datastr = ( hours + ":" + mins + ":"+secs ) --> </script> </head> <body> <font face="Arial" size="3" color="#b00000"> <script language="JavaScript"> <!-- document.write(datastr); --> </script> </font> </body> </html>
<html> <head> <title>Время.</title> </head> <body onLoad="myclock()"> <script language="JavaScript"> <!-- function myclock() { ndata=new Date() // Получение показаний часов, минут и секунд hours= ndata.getHours(); mins= ndata.getMinutes(); secs= ndata.getSeconds(); // Дополнение показаний нулем слева if (hours < 10) {hours = "0" + hours } if (mins < 10) {mins = "0" + mins } if (secs < 10) {secs = "0" + secs } // Суммирование всех данных для вывода datastr =hours+":" + mins+":" +secs // Запись данных document.clockexam.clock.value = " "+datastr; // Вызов функции с интервалом 1000 ms setTimeout("myclock()", 1000); } --> </script> <form name="clockexam"><input type="text" size="9" name="clock"></form> </body> </html>
Календарь время.
<html> <head> <title> Календарь время.</title> </head> <body> <font face="Arial" size="2" color="#DC5912"> <script language="JavaScript"> <!-- document.write(" " + new Date() + " "); --> </script> </font> </body> </html>
Java Script определяющий время нахождения на страничке
<html> <head> <title>Java Script определяющий время нахождения на страничке.</title> <script language="JavaScript"> <!--// startday = new Date(); clockStart = startday.getTime();
function initStopwatch() { var myTime = new Date(); var timeNow = myTime.getTime(); var timeDiff = timeNow - clockStart; this.diffSecs = timeDiff/1000; return(this.diffSecs); }
function getSecs() { var mySecs = initStopwatch(); var mySecs1 = ""+mySecs; mySecs1= mySecs1.substring(0,mySecs1.indexOf(".")) + " сек."; document.forms[0].timespent.value = mySecs1 window.setTimeout('getSecs()',1000); } // --> </script> </head> <body onload="window.setTimeout('getSecs()',1)"> <form><div>Вы на странице <input type="text" size="20" name="timespent" onfocus="this.blur()" style="font-family: sans-serif; text-align: left; background-color: rgb(0,0,0); color: rgb(255,255,0); border: thin"></div></form> </body> </html>
Часы в заголовке окна
<html> <head> <title>Часы в заголовке окна</title> <script language="JavaScript"> timestr = "00:00:00"; tid = 0; pause = 0; var to; var bcount; var tcount; function writer(){ document.write("test"); } function time(n) { tid=window.setTimeout("time(1)",to); today = new Date() if(today.getMinutes() < 10){ pad = "0"} else pad = ""; if(today.getSeconds() < 10){ pads = "0"} else pads = ""; timestr=today.getHours()+":"+pad+today.getMinutes()+":"+pads+today.getSeconds(); document.title = timestr; window.clearTimeout(tid); tid=window.setTimeout("time()",to); } function start(x) { f=x; to=60; time(x); } function cleartids() { window.clearTimeout(tid); } </script> </head> <body onload="start(document.forms[0])" onunload="cleartids()"> </body> </html>
|