반응형
js + css clock
Code
<script>
const secondHand = document.querySelector('.second-hand');
const minHand = document.querySelector('.min-hand');
const hourHand = document.querySelector('.hour-hand');
const setDate = () => {
const now = new Date();
const seconds = now.getSeconds();
const secondsDegrees = ((seconds / 60) * 360) + 90;
secondHand.style.transform = `rotate(${secondsDegrees}deg)`;
const mins = now.getMinutes();
const minsDegrees = ((mins / 60) * 360) + ((seconds / 60) * 6) + 90;
minHand.style.transform = `rotate(${minsDegrees}deg)`;
const hour = now.getHours();
const hourDegrees = ((hour / 12) * 360) + ((mins / 60) * 30) + 90;
hourHand.style.transform = `rotate(${hourDegrees}deg)`;
}
setInterval(setDate, 1000);
</script>
느낀점 & 배운점
시간 침, 분 침, 초침을 나눠서 transform 하는 방식을 배울 수 있었습니다.
setInterval을 사용해본 것은 처음이라 신기한 경험이었습니다.
반응형
'공부 정리 > jsChallenge' 카테고리의 다른 글
js challenge day 6 (0) | 2023.01.27 |
---|---|
js challenge day 5 (0) | 2023.01.25 |
js challenge day 4 (0) | 2023.01.24 |
Js challenge day 3 (0) | 2023.01.23 |
JS challenge day 1 (0) | 2023.01.17 |
댓글