Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 반응형 페이지
- 자바문제풀이
- 코딩테스트
- frontend
- @media
- max-width
- 그럼에도 불구하고
- 자바
- react-router-dom
- redux
- git
- java
- 그럼에도불구하고
- node
- 코드업
- Servlet
- 프론트엔드
- webpack
- JavaScript
- cleancode
- node.js
- HTML
- TypeScript
- react
- 변수
- CSS
- JS
- github
- media query
- coding
Archives
- Today
- Total
목록requestAnimationFrame() (1)
그럼에도 불구하고
시계 만들기
시간, 분, 초를 나타낼 수 있는 시계를 만들어보자 조건: 1. 현재 시간에 맞는 시간을 출력한다. 2. 시간, 분, 초를 두 자리로 출력하되 10이 넘지 않는 (1~9)의 경우 앞에 0을 붙여서 출력한다. clock.html : : clocl.css *{ margin: 0; padding: 0; box-sizing: border-box; } .container { width: 400px; height: 200px; margin: 300px auto; background-color: skyblue; border-radius: 70px; border: 5px solid antiquewhite; } .current-time { font-size: 60px; font-weight: bold; color: wh..
JavaScript/Function implementation
2023. 1. 3. 18:41