자료 #01: 컴퓨터
2011 수능 디데이 카운터
JinH
2010. 1. 15. 11:39
[자바스크립트를 지원하지 않는 환경]
[자바스크립트를 지원하지 않는 환경]
퍼가기
<a href="http://jinh.tistory.com/330" style="color:#000; text-decoration:none;" target="_blank">
<span id="output_msg" style="font:; color:; text-align:; margin:0;">2011 수능 디데이 카운터 by JinH</span><br/>
<span id="output" style="font:5ex georgia; color:red; text-align:; margin:0;">[자바스크립트를 지원하지 않는 환경]</span>
</a>
<script type="text/javascript">
/*
* @author JinH
* @blog http://jinh.tistory.com
*/
function $(id) {
return document.getElementById(id);
}
function M(number) {
return Math.floor(number/1000);
}
function countdown() {
var time_now = new Date().getTime();
var time_end = new Date(2010,10,18).getTime();
var dday = time_end - time_now;
function count() {
var days = M(dday/24/60/60);
var hours = M((dday - days*24*60*60*1000)/60/60);
if (hours<10) {
hours = '0'+hours;
}
var minutes = M((dday - days*24*60*60*1000 - hours*60*60*1000)/60);
if (minutes<10) {
minutes = '0'+minutes;
}
var seconds = M(dday - days*24*60*60*1000 - hours*60*60*1000 - minutes*60*1000);
if (seconds<10) {
seconds = '0'+seconds;
}
var centiseconds = M((dday - days*24*60*60*1000 - hours*60*60*1000 - minutes*60*1000 - seconds*1000)*100);
if (centiseconds<10) {
centiseconds = '0'+centiseconds;
}
return days + ':' + hours + ':' + minutes + ':' + seconds + ':' + centiseconds;
}
if (dday >= 0) {
$('output').innerHTML = count();
} else {
$('output').innerHTML = '0:00:00:00:00';
clearTimeout('countdown()');
}
setTimeout('countdown()', 55);
}
countdown();
</script>
※ 내용수정(2010.02.19): "주요 20개국(G20) 정상회의 개최 일정(11월11~12일)이 수능 시험날과 겹쳐 애초 11월11일 치를 예정이던 수능을 1주일 연기한다" -교육과학기술부