일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 데이터베이스
- hamonikr
- 스크립트
- DB
- 설정
- 리눅스
- 우분투
- PostgreSQL
- script
- 파이썬
- Windows
- 하모니카
- Linux
- 설치
- python
- node
- DATABASE
- JS
- 3.0
- 자바
- ubuntu
- 자바스크립트
- 아틀라시안
- install
- java
- 노드
- javascript
- 윈도우
- postgres
- Atlassian
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