-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (47 loc) · 1.92 KB
/
index.html
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Clock</title>
<link rel="icon" type="image/x-icon" href="https://www.freeiconspng.com/thumbs/clock-png/clock-png-32.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="clock">
<div class="circle" id="sc" style="--clr:#04fc43;" ><i></i></div>
<div class="circle circle2" id="mn" style="--clr:#fee800;" ><i></i></div>
<div class="circle circle3" id="hr" style="--clr:#ff2972;" ><i></i></div>
<span style="--i:1;"><b>1</b></span>
<span style="--i:2;"><b>2</b></span>
<span style="--i:3;"><b>3</b></span>
<span style="--i:4;"><b>4</b></span>
<span style="--i:5;"><b>5</b></span>
<span style="--i:6;"><b>6</b></span>
<span style="--i:7;"><b>7</b></span>
<span style="--i:8;"><b>8</b></span>
<span style="--i:9;"><b>9</b></span>
<span style="--i:10;"><b>10</b></span>
<span style="--i:11;"><b>11</b></span>
<span style="--i:12;"><b>12</b></span>
</div>
</div>
<script type="text/javascript">
// const deg= 6;
const hr = document.querySelector('#hr');
const mn = document.querySelector('#mn');
const sc = document.querySelector('#sc');
setInterval(()=>{
let day = new Date();
let hh= day.getHours() *30;
let mm= day.getMinutes() *6;
let ss= day.getSeconds() *6;
hr.style.transform=`rotateZ(${hh+(mm/12)}deg)`;
mn.style.transform=`rotateZ(${(mm)}deg)`;
sc.style.transform=`rotateZ(${(ss)}deg)`;
})
</script>
</body>
</html>