텍스트 디지탈 시계
페이지 정보
작성자
관리자
작성일
2008.02.15 12:21
본문
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY text="orange" onLoad="DigitalTime()">
<SPAN id="liveclock"></SPAN>
<SCRIPT language="JavaScript">
<!-- begin
function DigitalTime() {
if (!document.layers && !document.all)
return
var DigitalClock = new Date();
var hours = DigitalClock.getHours();
var minutes = DigitalClock.getMinutes();
var seconds = DigitalClock.getSeconds();
var dn = "AM";
if (hours > 12) {
dn = "PM";
hours = hours - 12;
}
if (hours == 0)
hours = 12;
if (minutes <= 9)
minutes = "0" + minutes;
if (seconds <= 9)
seconds = "0" + seconds;
digclock = "<font size='5' face='Arial' color='orange'><b>" +
"<font size='1'>Current Time:</font></br>" +
"<a href='http://www.blueb.co.kr'>" +
hours + ":" + minutes + ":" + seconds + " " + dn + "</a></b></font>";
if (document.layers) {
document.layers.liveclock.document.write(digclock);
document.layers.liveclock.document.close();
}
else if (document.all)
liveclock.innerHTML = digclock;
setTimeout("DigitalTime()",1000)
}
//-->
</script>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY text="orange" onLoad="DigitalTime()">
<SPAN id="liveclock"></SPAN>
<SCRIPT language="JavaScript">
<!-- begin
function DigitalTime() {
if (!document.layers && !document.all)
return
var DigitalClock = new Date();
var hours = DigitalClock.getHours();
var minutes = DigitalClock.getMinutes();
var seconds = DigitalClock.getSeconds();
var dn = "AM";
if (hours > 12) {
dn = "PM";
hours = hours - 12;
}
if (hours == 0)
hours = 12;
if (minutes <= 9)
minutes = "0" + minutes;
if (seconds <= 9)
seconds = "0" + seconds;
digclock = "<font size='5' face='Arial' color='orange'><b>" +
"<font size='1'>Current Time:</font></br>" +
"<a href='http://www.blueb.co.kr'>" +
hours + ":" + minutes + ":" + seconds + " " + dn + "</a></b></font>";
if (document.layers) {
document.layers.liveclock.document.write(digclock);
document.layers.liveclock.document.close();
}
else if (document.all)
liveclock.innerHTML = digclock;
setTimeout("DigitalTime()",1000)
}
//-->
</script>
댓글 1
바다사타이님의 댓글