<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>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 130 | 20년 전 | 3968 | ||
| 129 | 20년 전 | 2908 | ||
| 128 | 20년 전 | 3636 | ||
| 127 | 20년 전 | 3433 | ||
| 126 | 20년 전 | 3724 | ||
| 125 | 20년 전 | 8559 | ||
| 124 | 20년 전 | 2584 | ||
| 123 | 20년 전 | 3735 | ||
| 122 | 20년 전 | 3191 | ||
| 121 | 20년 전 | 2589 | ||
| 120 | 20년 전 | 2650 | ||
| 119 | 20년 전 | 2563 | ||
| 118 | 20년 전 | 2850 | ||
| 117 |
|
20년 전 | 3031 | |
| 116 | 20년 전 | 5289 | ||
| 115 | 20년 전 | 3892 | ||
| 114 | 20년 전 | 4942 | ||
| 113 | 20년 전 | 6195 | ||
| 112 | 20년 전 | 7317 | ||
| 111 | 20년 전 | 18419 | ||
| 110 | 20년 전 | 6868 | ||
| 109 | 20년 전 | 2866 | ||
| 108 | 20년 전 | 4125 | ||
| 107 |
prosper
|
20년 전 | 2468 | |
| 106 |
prosper
|
20년 전 | 4294 | |
| 105 |
아우겐나이스
|
20년 전 | 2891 | |
| 104 | 20년 전 | 2246 | ||
| 103 | 20년 전 | 2463 | ||
| 102 | 20년 전 | 2217 | ||
| 101 | 20년 전 | 2549 | ||
| 100 | 20년 전 | 1728 | ||
| 99 | 20년 전 | 1556 | ||
| 98 | 20년 전 | 1606 | ||
| 97 | 20년 전 | 2104 | ||
| 96 | 20년 전 | 1862 | ||
| 95 | 20년 전 | 2355 | ||
| 94 | 20년 전 | 3548 | ||
| 93 | 20년 전 | 1545 | ||
| 92 | 20년 전 | 1739 | ||
| 91 | 20년 전 | 3154 | ||
| 90 | 20년 전 | 2331 | ||
| 89 | 20년 전 | 3156 | ||
| 88 | 20년 전 | 2858 | ||
| 87 | 20년 전 | 3284 | ||
| 86 | 20년 전 | 5103 | ||
| 85 | 20년 전 | 2506 | ||
| 84 | 20년 전 | 4803 | ||
| 83 | 20년 전 | 2483 | ||
| 82 | 20년 전 | 3097 | ||
| 81 | 20년 전 | 7602 | ||
| 80 | 20년 전 | 3805 | ||
| 79 | 20년 전 | 3195 | ||
| 78 | 20년 전 | 4679 | ||
| 77 | 20년 전 | 2882 | ||
| 76 | 20년 전 | 6204 | ||
| 75 | 20년 전 | 4462 | ||
| 74 | 20년 전 | 5769 | ||
| 73 | 20년 전 | 3615 | ||
| 72 | 20년 전 | 5950 | ||
| 71 | 20년 전 | 3094 | ||
| 70 | 20년 전 | 2823 | ||
| 69 | 20년 전 | 2620 | ||
| 68 | 20년 전 | 2427 | ||
| 67 | 20년 전 | 2638 | ||
| 66 | 20년 전 | 2659 | ||
| 65 | 20년 전 | 3778 | ||
| 64 | 20년 전 | 2805 | ||
| 63 | 20년 전 | 2443 | ||
| 62 | 20년 전 | 2246 | ||
| 61 | 20년 전 | 3047 | ||
| 60 | 20년 전 | 3120 | ||
| 59 | 20년 전 | 2493 | ||
| 58 | 20년 전 | 2580 | ||
| 57 | 20년 전 | 2952 | ||
| 56 | 20년 전 | 2300 | ||
| 55 | 20년 전 | 2739 | ||
| 54 | 20년 전 | 2111 | ||
| 53 | 20년 전 | 2335 | ||
| 52 | 20년 전 | 2682 | ||
| 51 |
prosper
|
20년 전 | 2335 | |
| 50 |
prosper
|
20년 전 | 2153 | |
| 49 | 20년 전 | 2160 | ||
| 48 | 20년 전 | 2315 | ||
| 47 | 20년 전 | 1914 | ||
| 46 | 20년 전 | 1916 | ||
| 45 | 20년 전 | 2122 | ||
| 44 | 20년 전 | 2348 | ||
| 43 | 21년 전 | 4563 | ||
| 42 |
prosper
|
21년 전 | 2698 | |
| 41 |
prosper
|
21년 전 | 2100 | |
| 40 | 21년 전 | 2164 | ||
| 39 | 21년 전 | 2129 | ||
| 38 | 21년 전 | 2399 | ||
| 37 | 21년 전 | 2550 | ||
| 36 | 21년 전 | 1766 | ||
| 35 | 21년 전 | 4059 | ||
| 34 | 21년 전 | 3839 | ||
| 33 | 21년 전 | 2978 | ||
| 32 |
prosper
|
21년 전 | 2886 | |
| 31 | 21년 전 | 5251 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기