웹마스터 팁

디지털 시계입니다.

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>

제목 글쓴이 날짜
링크된 텍스트 오버시 위로 스크롤..예제 확인 [2] ▩윤미 2003.02.06
링크된 텍스트 클릭지 위로 스크롤되는 예제확인 [1] ▩윤미 2003.02.06
미디 랜덤으로 듣기 완벽해결! [4] K.샘 2003.02.05
음악 듣기 소스 당근당근 2003.02.04
최상위로 만들기 소스 [13] 앳플군 2003.02.04
KBS VOD 최상위로 만들기 소스 (필요 부분만 수정) [3] kimbilly 2003.02.02
바탕화면에 바로가기 아이콘을 만드시겠습니까? [소스분석용] [12] RedEye 2003.02.02
한페이지에서 여러개의 크롬리스 창 띄우기..(ByKlein Chromeless Window) [3] file 아린~★ 2003.01.29
주소 보여주기 시를 때 제가 자주 쓰는 방법 이건 조회수 빵이다 ㅡ0ㅡ; [21] ☆좀비파우더™ 2003.01.28
로그인과 로그아웃을 체크하는 방법입니다. [3] 이영호 2003.01.24
텍스트 폼에 커서가 미리 깜빡이도록... [8] 카리 2003.01.22
[레드-자바 스크립트초보] 더블클릭하면 경고창 뜬후 사이트 이동하기 [7] 레드 2003.01.17
성인인증 받는 소스입니다..... [17] q333 2003.01.12
디지털 시계입니다. [8] q333 2003.01.12
1 분마다 배경이 빠뀌는 소스...입니다. [1] q333 2003.01.12
IE6SP1 에서 작동하는 크롬리스윈도우!![ByKlein_Chromeless_Window1.0] [13] 술도짱 2003.01.10
[1분짜리 팁!] 홈페이지 입장 여부 묻는 폼 띄우기! [2] 찐군 2003.01.09
자바스크립트용 계산기 v1.0 [4] 찐군 2003.01.09
링크가 걸려있는 모든 이미지에 마우스 올리면 서서히 밝아지게 하는 소스입니다. [3] 정해식 2003.01.09
혹시 이런것도 될까-_-;;. 시노부 플레이어에서 랜덤 모드 사용자가 택하게 하기 TuTy 2003.01.09