웹마스터 팁

디지털 시계입니다.

2003.01.12 23:04

q333

디지털 시계의 소스입니다.

여러분의 홈피에 넣으면 이쁠겁니다.

<style type="text/css">
<!--
a {
color: blue;
text-decoration: none;
}

a:hover {
color: lime;
text-decoration: none;

}
-->
</style></HEAD>

<BODY bgcolor="red" text="orange" onLoad="DigitalTime()">
<SPAN id="liveclock" style="position:absolute;left:313px;top:29px;width:150px;height:50px;">
</SPAN>
<SCRIPT language="JavaScript">
<!-- begin
// http://Q333.com
// 2000 YouJung
// webmaster@q333.com
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;

//change font size here to your desire

digclock = "<font size='5' face='Arial' color='orange'><b>" +
"<font size='1'>Current Time:</font></br>" +
"<a href='http://myhome.naver.com/internet79/home2/php.htm'>" +
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>

제목 글쓴이 날짜
텍스트 폼 / 전체선택 하기 자바스크립 mnemosyne 2002.12.24
색다른 링크법(새창) [2] BIRDY™ 2002.12.30
mid 랜덤으로 듣기 ... [2] 아벨라 2003.01.02
숫자를 한글로 변환하는 함수 [1] 행복한고니 2003.01.03
크롬리스에 응용할만한 소스;; [3] MYMob.INT. 2003.01.05
갤러리스킨에 쓰면 좋을 것 같은 미리보기(수정2) [10] 행복한고니 2003.01.06
[re] select form 으로 새 창 띄우기(간단버전) [3] file RedEye 2003.01.27
select form 으로 새 창 띄우기 [4] 당근당근 2003.01.07
홈페이지 패스워드(암호) 걸기 소스 [6] keymove 2003.01.09
혹시 이런것도 될까-_-;;. 시노부 플레이어에서 랜덤 모드 사용자가 택하게 하기 TuTy 2003.01.09
링크가 걸려있는 모든 이미지에 마우스 올리면 서서히 밝아지게 하는 소스입니다. [3] 정해식 2003.01.09
자바스크립트용 계산기 v1.0 [4] 찐군 2003.01.09
[1분짜리 팁!] 홈페이지 입장 여부 묻는 폼 띄우기! [2] 찐군 2003.01.09
IE6SP1 에서 작동하는 크롬리스윈도우!![ByKlein_Chromeless_Window1.0] [13] 술도짱 2003.01.10
1 분마다 배경이 빠뀌는 소스...입니다. [1] q333 2003.01.12
디지털 시계입니다. [8] q333 2003.01.12
성인인증 받는 소스입니다..... [17] q333 2003.01.12
[레드-자바 스크립트초보] 더블클릭하면 경고창 뜬후 사이트 이동하기 [7] 레드 2003.01.17
텍스트 폼에 커서가 미리 깜빡이도록... [8] 카리 2003.01.22
로그인과 로그아웃을 체크하는 방법입니다. [3] 이영호 2003.01.24