로딩
티스토리 데이터 처리 중입니다.

아날로그 시계 만들기

 아날로그 시계 만들기

아날로그 시계를 만들어보자 조건: 1. Date 함수를 이용한다. 2.

Date 함수를 통해 각도를 구해서 사용한다. HTML 더보기 CSS * { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: rgba(15, 14, 14, 0.889); } .container { width: 600px; height: 500px; background-color: rgba(28, 27, 27, 0.829); border-radius: 60px; margin: 25vh auto; } .clock { width: 400px; height: 400px; border-radius: 50%; background-color: rgba(37, 36.....