<html> <head> <title> </title> </head> <body> <style type='text/css'> <!-- .text { COLOR: red; FONT-FAMILY: 굴림; FONT-SIZE: 9pt; } --> </style> <SCRIPT LANGUAGE="JavaScript"> <!-- startday = new Date(); clockStart = startday.getTime(); function initStopwatch() { var myTime = new Date(); return((myTime.getTime() - clockStart)/1000); } function getSecs() { var tSecs = Math.round(initStopwatch()); var iSecs = tSecs % 60; var iMins = Math.round((tSecs-30)/60); var sSecs ="" + ((iSecs > 9) ? iSecs : "0" + iSecs); var sMins ="" + ((iMins > 9) ? iMins : "0" + iMins); time.innerHTML = sMins+":"+sSecs; window.setTimeout('getSecs()',1000); } //--> </script> <BODY onLoad="window.setTimeout('getSecs()',1);"> <div id="time" class="text"></div> </body> </html> |
'인터넷관련' 카테고리의 다른 글
파일 용량 계산 (Gb / Mb / Kb / Bytes) (0) | 2008.01.30 |
---|---|
gray 컬러 모음 - 색상표, 컬러 코드 (0) | 2008.01.30 |
이미지 시간 지정해서 다른 이미지로 바뀜 (0) | 2008.01.30 |
언어에 따라 페이지 지정하는법. (0) | 2008.01.30 |
시간대별 다른 이미지 나타나게.. (0) | 2008.01.30 |
시간대별 다른 메세지 출력하기 (0) | 2008.01.30 |
문서없이 새창 띄우기 (0) | 2008.01.30 |
롤오버(마우스 오버)시, 클릭시 순서대로 이미지 트렌제이션 효과 (0) | 2008.01.30 |