Skip to content

Jungsu-lilly/countdown-Timer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Countdown-Timer

개발 기간 및 환경

  • 기간: 2021.10.20 ~ 2021.10.21

  • OS: Windows 10

  • Tools: VS Code

  • 실행환경: 크롬 웹 브라우저


파일 목록

프로그램이 정상적으로 실행되기 위해서는 다음 파일들이 같은 폴더 내에 존재해야 합니다.
그렇지 않을 경우 정상적인 실행을 보장하지 않습니다.

index.html - 실행 파일
style.css
script.js
snow.jpeg - 배경 이미지


TestCase

자바스크립트 내부 코드를 살펴보며 학습합니다. (script.js 파일)

  1. html 에서 가져온 elements 값 확인.
console.log(daysEl);
console.log(hoursEl);

결과:

64

4

남은 일수: 64
시간: 4 가 출력됩니다.

  1. Date 객체 값 확인.
console.log(newYearsDate);
console.log(currentDate);
console.log(newYearsDate-currentDate);

결과: Sat Jan 01 2022 00:00:00 GMT+0900 (한국 표준시)
script.js:16 Thu Oct 28 2021 20:02:22 GMT+0900 (한국 표준시)
script.js:17 5543857064

현재 시각 기준, 2022년 새해 시각이 한국 표준시로 표시됩니다. 두 값 차이는 ms(1/1000초) 값 표시됨.

  1. setInterval 함수
setInterval(countdown, 1000);

1초마다 countdowㅜ function 실행 확인.

About

카운트 다운을 해주는 타이머

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published