<HTML>
<HEAD>
<TITLE>실시간 카운트 다운 </TITLE>
</HEAD>
<BODY>
<!---- 아래의 코드를 원하는 위치에 복사 해 넣으세요 -------------------->
<script language="JavaScript1.2">
function setcountdown(theyear,themonth,theday,thehour,themin,thesec){
yr=theyear;mo=themonth;da=theday;hr=thehour;min=themin;sec=thesec
}
// 1: 카운트다운할 날짜와 시간을 입력 하세요 (년, 월, 일, 시(0=자정,23=밤11시), 분,초
setcountdown(2010,12,05,12,00,00)
// 2: 메세지들을 설정 하세요
var occasion="그녀와 만난지 10주년 되는 날"
var message_on_occasion="드디어 10년이 흘렀네요"
// 3: 카운트 다운 영역을 설정 하세요
var countdownwidth='600px' // 가로크기
var countdownheight='35px' // 높이
var countdownbgcolor='lightyellow' // 배경색
var opentags='<font face="굴림">' // 글자모양
var closetags='</font>' // 글자모양 종료태그
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
var crosscount=''
function start_countdown(){
if (document.layers)
document.countdownnsmain.visibility="show"
else if (document.all||document.getElementById)
crosscount=document.getElementById&&!document.all?document.getElementById("countdownie") : countdownie
countdown()
}
if (document.all||document.getElementById)
document.write('<span id="countdownie" style="width:'+countdownwidth+'; background-color:'+countdownbgcolor+'"></span>')
window.onload=start_countdown
function countdown(){
var today=new Date()
var todayy=today.getYear()
if (todayy < 1000)
todayy+=1900
var todaym=today.getMonth()
var todayd=today.getDate()
var todayh=today.getHours()
var todaymin=today.getMinutes()
var todaysec=today.getSeconds()
var todaystring=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec
futurestring=montharray[mo-1]+" "+da+", "+yr+" "+hr+":"+min+":"+sec
dd=Date.parse(futurestring)-Date.parse(todaystring)
dday=Math.floor(dd/(60*60*1000*24)*1)
dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1)
dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000))/(60*1000)*1)
dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1)
if(dday<=0&&dhour<=0&&dmin<=0&&dsec<=1&&todayd==da){
if (document.layers){
document.countdownnsmain.document.countdownnssub.document.write(opentags+message_on_occasion+closetags)
document.countdownnsmain.document.countdownnssub.document.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+message_on_occasion+closetags
return
}
else if (dday<=-1){
if (document.layers){
document.countdownnsmain.document.countdownnssub.document.write(opentags+"Occasion already passed! "+closetags)
document.countdownnsmain.document.countdownnssub.document.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+"Occasion already passed! "+closetags
return
}
else{
if (document.layers){
document.countdownnsmain.document.countdownnssub.document.write(opentags+dday+ " days, "+dhour+" hours, "+dmin+" minutes, and "+dsec+" seconds left until "+occasion+closetags)
document.countdownnsmain.document.countdownnssub.document.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=occasion +"까지 " + opentags+dday+ " 일, "+dhour+" 시간, "+dmin+" 분, "+dsec+" 초가 남았습니다"+closetags
}
setTimeout("countdown()",1000)
}
</script>
<ilayer id="countdownnsmain" width=&{countdownwidth}; height=&{countdownheight}; bgColor=&{countdownbgcolor}; visibility=hide><layer id="countdownnssub" width=&{countdownwidth}; height=&{countdownheight}; left=0 top=0></layer></ilayer>
<!------------------------- 여기까지 ---------------------------------->
</BODY>
</HTML><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]</div>
<HEAD>
<TITLE>실시간 카운트 다운 </TITLE>
</HEAD>
<BODY>
<!---- 아래의 코드를 원하는 위치에 복사 해 넣으세요 -------------------->
<script language="JavaScript1.2">
function setcountdown(theyear,themonth,theday,thehour,themin,thesec){
yr=theyear;mo=themonth;da=theday;hr=thehour;min=themin;sec=thesec
}
// 1: 카운트다운할 날짜와 시간을 입력 하세요 (년, 월, 일, 시(0=자정,23=밤11시), 분,초
setcountdown(2010,12,05,12,00,00)
// 2: 메세지들을 설정 하세요
var occasion="그녀와 만난지 10주년 되는 날"
var message_on_occasion="드디어 10년이 흘렀네요"
// 3: 카운트 다운 영역을 설정 하세요
var countdownwidth='600px' // 가로크기
var countdownheight='35px' // 높이
var countdownbgcolor='lightyellow' // 배경색
var opentags='<font face="굴림">' // 글자모양
var closetags='</font>' // 글자모양 종료태그
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
var crosscount=''
function start_countdown(){
if (document.layers)
document.countdownnsmain.visibility="show"
else if (document.all||document.getElementById)
crosscount=document.getElementById&&!document.all?document.getElementById("countdownie") : countdownie
countdown()
}
if (document.all||document.getElementById)
document.write('<span id="countdownie" style="width:'+countdownwidth+'; background-color:'+countdownbgcolor+'"></span>')
window.onload=start_countdown
function countdown(){
var today=new Date()
var todayy=today.getYear()
if (todayy < 1000)
todayy+=1900
var todaym=today.getMonth()
var todayd=today.getDate()
var todayh=today.getHours()
var todaymin=today.getMinutes()
var todaysec=today.getSeconds()
var todaystring=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec
futurestring=montharray[mo-1]+" "+da+", "+yr+" "+hr+":"+min+":"+sec
dd=Date.parse(futurestring)-Date.parse(todaystring)
dday=Math.floor(dd/(60*60*1000*24)*1)
dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1)
dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000))/(60*1000)*1)
dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1)
if(dday<=0&&dhour<=0&&dmin<=0&&dsec<=1&&todayd==da){
if (document.layers){
document.countdownnsmain.document.countdownnssub.document.write(opentags+message_on_occasion+closetags)
document.countdownnsmain.document.countdownnssub.document.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+message_on_occasion+closetags
return
}
else if (dday<=-1){
if (document.layers){
document.countdownnsmain.document.countdownnssub.document.write(opentags+"Occasion already passed! "+closetags)
document.countdownnsmain.document.countdownnssub.document.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+"Occasion already passed! "+closetags
return
}
else{
if (document.layers){
document.countdownnsmain.document.countdownnssub.document.write(opentags+dday+ " days, "+dhour+" hours, "+dmin+" minutes, and "+dsec+" seconds left until "+occasion+closetags)
document.countdownnsmain.document.countdownnssub.document.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=occasion +"까지 " + opentags+dday+ " 일, "+dhour+" 시간, "+dmin+" 분, "+dsec+" 초가 남았습니다"+closetags
}
setTimeout("countdown()",1000)
}
</script>
<ilayer id="countdownnsmain" width=&{countdownwidth}; height=&{countdownheight}; bgColor=&{countdownbgcolor}; visibility=hide><layer id="countdownnssub" width=&{countdownwidth}; height=&{countdownheight}; left=0 top=0></layer></ilayer>
<!------------------------- 여기까지 ---------------------------------->
</BODY>
</HTML><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]</div>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 630 | 19년 전 | 2352 | ||
| 629 |
|
19년 전 | 2013 | |
| 628 |
|
19년 전 | 3126 | |
| 627 |
|
19년 전 | 2034 | |
| 626 |
|
19년 전 | 2067 | |
| 625 |
|
19년 전 | 1721 | |
| 624 |
|
19년 전 | 2226 | |
| 623 | 19년 전 | 2201 | ||
| 622 |
|
19년 전 | 2508 | |
| 621 |
|
19년 전 | 2912 | |
| 620 |
|
19년 전 | 2406 | |
| 619 | 19년 전 | 2474 | ||
| 618 | 19년 전 | 3515 | ||
| 617 |
|
19년 전 | 3234 | |
| 616 |
|
19년 전 | 3223 | |
| 615 |
|
19년 전 | 3041 | |
| 614 |
|
19년 전 | 2047 | |
| 613 |
|
19년 전 | 2381 | |
| 612 |
|
19년 전 | 2241 | |
| 611 |
|
19년 전 | 2087 | |
| 610 |
|
19년 전 | 2522 | |
| 609 |
|
19년 전 | 2422 | |
| 608 |
|
19년 전 | 2813 | |
| 607 | 19년 전 | 2195 | ||
| 606 | 19년 전 | 3533 | ||
| 605 | 19년 전 | 1990 | ||
| 604 | 19년 전 | 2602 | ||
| 603 | 19년 전 | 1615 | ||
| 602 |
|
19년 전 | 2839 | |
| 601 | 19년 전 | 3075 | ||
| 600 |
|
19년 전 | 2153 | |
| 599 | 19년 전 | 2003 | ||
| 598 | 19년 전 | 2483 | ||
| 597 | 19년 전 | 2389 | ||
| 596 |
|
19년 전 | 3076 | |
| 595 |
|
19년 전 | 6754 | |
| 594 | 19년 전 | 2710 | ||
| 593 | 19년 전 | 3188 | ||
| 592 |
|
19년 전 | 3091 | |
| 591 |
|
19년 전 | 1933 | |
| 590 | 19년 전 | 3368 | ||
| 589 | 19년 전 | 2211 | ||
| 588 |
|
19년 전 | 2707 | |
| 587 | 19년 전 | 2346 | ||
| 586 |
|
19년 전 | 4367 | |
| 585 | 19년 전 | 2487 | ||
| 584 | 19년 전 | 2760 | ||
| 583 |
|
19년 전 | 3524 | |
| 582 |
|
19년 전 | 3719 | |
| 581 |
|
19년 전 | 3257 | |
| 580 | 19년 전 | 2485 | ||
| 579 | 19년 전 | 3078 | ||
| 578 | 19년 전 | 3980 | ||
| 577 | 19년 전 | 3815 | ||
| 576 | 19년 전 | 1755 | ||
| 575 |
|
19년 전 | 2209 | |
| 574 |
|
19년 전 | 5403 | |
| 573 | 19년 전 | 6723 | ||
| 572 | 19년 전 | 2567 | ||
| 571 | 19년 전 | 2108 | ||
| 570 | 19년 전 | 2603 | ||
| 569 | 19년 전 | 3304 | ||
| 568 | 19년 전 | 3531 | ||
| 567 | 19년 전 | 2981 | ||
| 566 | 19년 전 | 2602 | ||
| 565 |
|
19년 전 | 4720 | |
| 564 |
|
19년 전 | 6731 | |
| 563 |
|
19년 전 | 5011 | |
| 562 |
|
19년 전 | 5951 | |
| 561 |
|
19년 전 | 2695 | |
| 560 |
|
19년 전 | 2547 | |
| 559 |
|
19년 전 | 2222 | |
| 558 |
|
19년 전 | 2303 | |
| 557 | 19년 전 | 4595 | ||
| 556 |
|
19년 전 | 4670 | |
| 555 | 19년 전 | 2511 | ||
| 554 | 19년 전 | 2175 | ||
| 553 | 19년 전 | 2526 | ||
| 552 |
|
19년 전 | 3168 | |
| 551 | 19년 전 | 2940 | ||
| 550 |
|
19년 전 | 1899 | |
| 549 |
|
19년 전 | 1959 | |
| 548 |
|
19년 전 | 3147 | |
| 547 |
|
19년 전 | 2357 | |
| 546 |
|
19년 전 | 3619 | |
| 545 |
|
19년 전 | 2549 | |
| 544 |
|
19년 전 | 1850 | |
| 543 |
|
19년 전 | 2455 | |
| 542 |
|
19년 전 | 1729 | |
| 541 |
|
19년 전 | 1411 | |
| 540 |
|
19년 전 | 1540 | |
| 539 |
|
19년 전 | 1804 | |
| 538 |
|
19년 전 | 1584 | |
| 537 |
|
19년 전 | 1783 | |
| 536 |
|
19년 전 | 1563 | |
| 535 |
|
19년 전 | 1961 | |
| 534 |
|
19년 전 | 1847 | |
| 533 |
|
19년 전 | 1449 | |
| 532 |
|
19년 전 | 1443 | |
| 531 |
|
19년 전 | 1362 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기