묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
말 그대로입니다. 타이틀바에 시계를 넣고 싶은데, 상태바에 시계 넣는 소스는 있어도 타이틀바에 시계 넣는 소스는 아직 못봤네요;
어디 없을까요?
타이틀바에 시계를 넣고 싶은데요..
2005.04.10 04:06
말 그대로입니다. 타이틀바에 시계를 넣고 싶은데, 상태바에 시계 넣는 소스는 있어도 타이틀바에 시계 넣는 소스는 아직 못봤네요;
어디 없을까요?
<script language=javaScript>
<!-- Beginning of JavaScript -
var hours
var shifthours
var minutes
var seconds
var localhours
var pause=2000
var thisplace
var i_worldtime=0
var timer
var worldtime = new Array()
worldtime[0]="서울,9" // 도시명, 시차
worldtime[1]="바그다드,3"
worldtime[2]="베이찡,8"
worldtime[3]="베르린,1"
worldtime[4]="부에노스아이레스,-3"
worldtime[5]="시카고,-6"
worldtime[6]="덴버,-7"
worldtime[7]="홍콩,8"
worldtime[8]="호놀루루,-10"
worldtime[9]="요하네스버그,2"
worldtime[10]="Kairo,2"
worldtime[11]="Lima,-5"
worldtime[12]="London,0"
worldtime[13]="Mexico City,-6"
worldtime[14]="Moscow,3"
worldtime[15]="New York,-5"
worldtime[16]="Paris,1"
worldtime[17]="Perth,8"
worldtime[18]="Rio de Janheiro,-2"
worldtime[19]="San Francisco,-8"
worldtime[20]="Sydney,11"
worldtime[21]="Tokyo,9"
function showtime() {
if (document.all) {
thisplace=worldtime[i_worldtime].split(",")
thistime= new Date()
hours=thistime.getUTCHours()
hours=eval(hours)
shifthours=eval(thisplace[1])
localhours=eval(shifthours+hours)
if (localhours <0) {localhours=24+localhours}
if (localhours >=24) {localhours=localhours-24}
minutes=thistime.getUTCMinutes()
seconds=thistime.getUTCSeconds()
if (thisplace[0]=='Delhi') {
minutes=eval(minutes+30)
if (minutes>=60) {
minutes=eval(minutes-60)
localhours=eval(localhours+1)
}
}
if (eval(minutes) < 10) {minutes="0"+minutes}
if (eval(seconds) < 10) {seconds="0"+seconds}
if (eval(localhours) < 10) {localhours="0"+localhours}
thistime = localhours+":"+minutes+":"+seconds
document.title=" ------ "+thistime+" --- >>> "+thisplace[0]+" <<< ---------------------------------"
i_worldtime++
if (i_worldtime>=worldtime.length) {
i_worldtime=0
}
timer =setTimeout("showtime()",pause)
}
}
window.onload=showtime
// - End of JavaScript - -->
</script>
--------- 여기까지 복사해서 넣으세요 ---------
※ <TITLE> </TITLE> 태그 사이에는 아무것도 넣지 마세요