Menu

 

 

아래 소스를 <head>와 </head> 사이에 넣어주세요.
< SCRIPT LANGUAGE="JavaScript">

< !--
function clock() {
        var now=new Date()
        var hrs= now.getHours()
        var mins=now.getMinutes()
        var secs=now.getSeconds()
        var disp=((hrs>12) ? (hrs-12) : hrs) + ":"
        disp+=((mins<10) ? "0" + mins : mins) + ":" + ((secs<10) ? "0" + secs : secs)
        disp+=((hrs>12) ? " PM" : " AM")
        status=disp
// to make it in the form feild..just use the same
//scripting as above..but just add this next line in
//place off "status=disp"

                setTimeout("clock()", 0);
}
//STOP HIDING-->
< /SCRIPT>


다음에는 <body>안에 아래 소스를 넣습니다.  
bgproperties="fixed" oncontextmenu="return false"
ondragstart="return false" onselectstart="return false" onLoad="clock();"  
아래처럼요
<body bgproperties="fixed" oncontextmenu="return false"
ondragstart="return false" onselectstart="return false" onLoad="clock();" >

그럼 상태바에 현재 시각이 나옵니다.

< body bgproperties="fixed" oncontextmenu="return false"
ondragstart="return false" onselectstart="return false" onLoad="clock();">

위에처럼 삽입을 하면 하단에 시계가 나옵니다.

'Wep Tip' 카테고리의 다른 글

구글 검색창  (0) 2016.06.05
imbc에서 음악 가져오기  (0) 2016.06.05
무응답 응용프로그램 일찍 끄기와  (0) 2016.06.04
탐색기에서 FTP접속법  (0) 2016.06.04
컴퓨터가 너무 느릴때는  (0) 2016.06.04