일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- sky 시리우스폰
- 하루한마디영어
- objective-c
- 영어
- 안드로이드 개발
- 아이폰 배경화면
- 안드로이드 배경화면
- 구글 안드로이드 개발
- android
- 아이폰 바탕화면
- 스카이 안드로이드폰 시리우스 K양 동영상
- 인기있는 블로그 만들기
- 구글안드로이드
- 안드로이드 바탕화면
- 하루 한마디 영어
- 스마트폰 배경화면
- MapView
- 안드로이드개발
- 구글 안드로이드
- 안드로이드2.0개발
- 안드로이드 개발 강좌
- SKY 시리우스
- 안드로이드 개발 2.0
- Form Stuff
- 안드로이드 2.0 개발
- 안드로이드2.0
- 스카이 안드로이드폰 시리우스
- 안드로이드
- 안드로이드폰
- 안드로이드 개발 2.0 강좌
- Today
- Total
moozi
d-day 구하기 javascript 본문
<html>
<head>
<meta charset="utf-8">
<script type="text/javascript">
function reverse_counter(){
today = new Date();
d_day = new Date("2018-02-09");
days = (d_day - today) / 1000 / 60 / 60 / 24;
daysRound = Math.floor(days);
hours = (d_day - today) / 1000 / 60 / 60 - (24 * daysRound);
hoursRound = Math.floor(hours);
minutes = (d_day - today) / 1000 /60 - (24 * 60 * daysRound) - (60 * hoursRound);
minutesRound = Math.floor(minutes);
seconds = (d_day - today) / 1000 - (24 * 60 * 60 * daysRound) - (60 * 60 * hoursRound) -(60 * minutesRound);
secondsRound = Math.round(seconds);
sec = " 초.";
min = " 분, ";
hr = " 시간, ";
dy = " 일, ";
document.counter.counter_box.value = " 남은 시간 : " + daysRound +dy + hoursRound + hr + minutesRound + min + secondsRound + sec;
newtime = window.setTimeout("reverse_counter();", 1000);
}
</script>
</head>
<body onLoad="reverse_counter();">
<center>
<form name="counter">
<input type="text" name="counter_box" size="55" >
</form>
</center>
</body>
</html>
'TIS_2016 > HTML5_1기' 카테고리의 다른 글
달력 예제 (0) | 2016.04.05 |
---|---|
2차 포트폴리오 (13) | 2016.04.05 |
부트스트랩에서 navbar 배경색 바꾸기 (0) | 2016.04.04 |
4/2 slide javascript (0) | 2016.04.01 |
modal video fullscreen (0) | 2016.03.31 |