일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- script
- 하모니카
- 우분투
- Windows
- hamonikr
- DATABASE
- install
- 자바
- python
- node
- 노드
- 설정
- 리눅스
- java
- 윈도우
- 파이썬
- 아틀라시안
- 자바스크립트
- 데이터베이스
- postgres
- JS
- 3.0
- 스크립트
- PostgreSQL
- ubuntu
- DB
- javascript
- Atlassian
- Linux
- 설치
Archives
- Today
- Total
LukeHan 의 잡다한 기술 블로그
javascript 에서 timer 기능 사용하기 본문
반응형
function startTimer(duration, display){
var timer = duration, seconds;
var interval = setInterval(function(){
seconds = parseInt(timer % 60, 10);
seconds = seconds < 10 ? "0" + seconds : seconds;
display.textContent = seconds;
if(timer === 0){
clearInterval(interval);
}
if(--timer < 0){
timer = duration;
}
}, 1000);
}
startTimer(60, document.querySelector('#timeCount'));
반응형
Comments