<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>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 92 | ||
| 8229 | 9년 전 | 89 | ||
| 8228 |
커네드커네드
|
9년 전 | 133 | |
| 8227 | 9년 전 | 154 | ||
| 8226 | 9년 전 | 181 | ||
| 8225 | 9년 전 | 171 | ||
| 8224 | 9년 전 | 164 | ||
| 8223 | 9년 전 | 132 | ||
| 8222 |
|
9년 전 | 205 | |
| 8221 | 9년 전 | 113 | ||
| 8220 | 9년 전 | 128 | ||
| 8219 | 9년 전 | 115 | ||
| 8218 | 9년 전 | 162 | ||
| 8217 |
star3840
|
9년 전 | 132 | |
| 8216 | 9년 전 | 179 | ||
| 8215 | 9년 전 | 135 | ||
| 8214 | 9년 전 | 241 | ||
| 8213 | 9년 전 | 185 | ||
| 8212 | 9년 전 | 100 | ||
| 8211 | 9년 전 | 272 | ||
| 8210 | 9년 전 | 268 | ||
| 8209 | 9년 전 | 357 | ||
| 8208 | 9년 전 | 240 | ||
| 8207 | 9년 전 | 243 | ||
| 8206 |
|
9년 전 | 210 | |
| 8205 | 9년 전 | 192 | ||
| 8204 | 9년 전 | 151 | ||
| 8203 | 9년 전 | 248 | ||
| 8202 | 9년 전 | 163 | ||
| 8201 | 9년 전 | 197 | ||
| 8200 | 9년 전 | 185 | ||
| 8199 | 9년 전 | 237 | ||
| 8198 | 9년 전 | 197 | ||
| 8197 | 9년 전 | 183 | ||
| 8196 | 9년 전 | 570 | ||
| 8195 | 9년 전 | 180 | ||
| 8194 | 9년 전 | 302 | ||
| 8193 | 9년 전 | 178 | ||
| 8192 | 9년 전 | 216 | ||
| 8191 | 9년 전 | 160 | ||
| 8190 | 9년 전 | 155 | ||
| 8189 | 9년 전 | 220 | ||
| 8188 | 9년 전 | 152 | ||
| 8187 | 9년 전 | 163 | ||
| 8186 | 9년 전 | 161 | ||
| 8185 | 9년 전 | 338 | ||
| 8184 | 9년 전 | 126 | ||
| 8183 | 9년 전 | 338 | ||
| 8182 | 9년 전 | 193 | ||
| 8181 | 9년 전 | 152 | ||
| 8180 | 9년 전 | 721 | ||
| 8179 | 9년 전 | 508 | ||
| 8178 | 9년 전 | 330 | ||
| 8177 |
kiplayer
|
9년 전 | 348 | |
| 8176 | 9년 전 | 377 | ||
| 8175 | 9년 전 | 245 | ||
| 8174 | 9년 전 | 267 | ||
| 8173 | 9년 전 | 358 | ||
| 8172 | 9년 전 | 222 | ||
| 8171 | 9년 전 | 200 | ||
| 8170 | 9년 전 | 312 | ||
| 8169 |
커네드커네드
|
9년 전 | 279 | |
| 8168 | 9년 전 | 346 | ||
| 8167 | 9년 전 | 337 | ||
| 8166 | 9년 전 | 256 | ||
| 8165 | 9년 전 | 189 | ||
| 8164 | 9년 전 | 321 | ||
| 8163 | 9년 전 | 302 | ||
| 8162 | 9년 전 | 325 | ||
| 8161 | 9년 전 | 315 | ||
| 8160 |
|
9년 전 | 512 | |
| 8159 | 9년 전 | 449 | ||
| 8158 | 9년 전 | 271 | ||
| 8157 | 9년 전 | 400 | ||
| 8156 | 9년 전 | 287 | ||
| 8155 | 9년 전 | 275 | ||
| 8154 |
00년생용띠
|
9년 전 | 619 | |
| 8153 | 9년 전 | 256 | ||
| 8152 |
|
9년 전 | 432 | |
| 8151 | 9년 전 | 436 | ||
| 8150 | 9년 전 | 526 | ||
| 8149 |
Jangfolk
|
9년 전 | 368 | |
| 8148 | 9년 전 | 188 | ||
| 8147 | 9년 전 | 398 | ||
| 8146 | 9년 전 | 468 | ||
| 8145 | 9년 전 | 414 | ||
| 8144 | 9년 전 | 375 | ||
| 8143 | 9년 전 | 218 | ||
| 8142 | 9년 전 | 455 | ||
| 8141 | 9년 전 | 398 | ||
| 8140 | 9년 전 | 946 | ||
| 8139 | 9년 전 | 287 | ||
| 8138 |
전갈자리남자
|
9년 전 | 408 | |
| 8137 | 9년 전 | 423 | ||
| 8136 | 9년 전 | 765 | ||
| 8135 |
|
9년 전 | 815 | |
| 8134 |
PlayPixel
|
9년 전 | 541 | |
| 8133 |
|
9년 전 | 460 | |
| 8132 | 9년 전 | 482 | ||
| 8131 | 9년 전 | 830 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기