Skip to content

Commit 8e34ef1

Browse files
committed
completed course 2
1 parent ecac1b6 commit 8e34ef1

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

02 - JS + CSS Clock/index-START.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,36 @@
6161
background:black;
6262
position: absolute;
6363
top:50%;
64+
transform-origin: 100%;
65+
transform: rotate(90deg);
66+
transition: all 0.05s;
67+
transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
6468
}
6569

6670
</style>
6771

6872
<script>
73+
const secondHand = document.querySelector('.second-hand');
74+
const minHand = document.querySelector('.min-hand');
75+
const hourHand = document.querySelector('.hour-hand');
6976

77+
function setDate() {
78+
const now = new Date();
79+
80+
const seconds = now.getSeconds();
81+
const secondsDegrees = ((seconds / 60) * 360) + 90;
82+
secondHand.style.transform = `rotate(${secondsDegrees}deg)`;
83+
84+
const mins = now.getMinutes();
85+
const minsDegrees = ((mins / 60 * 360) + 90);
86+
minHand.style.transform = `rotate(${minsDegrees}deg)`;
87+
88+
const hours = now.getHours();
89+
const hoursDegrees = ((hours / 12 * 360) + 90);
90+
hourHand.style.transform = `rotate(${hoursDegrees}deg)`;
91+
}
92+
93+
setInterval(setDate, 1000);
7094

7195
</script>
7296
</body>

0 commit comments

Comments
 (0)