-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCnvas.html
executable file
·66 lines (34 loc) · 920 Bytes
/
Cnvas.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Clock with Cnvas</title>
<link rel='stylesheet' href='Clock.css'>
</head>
<body>
<div class='msg'>
<span>The size of the clock depends of your screen</span>
</div>
<canvas></canvas>
<div class='color'>
<div class='container'>
<label>Clock :
<input type='color' id='clock' value='#ee82ef'/>
</label>
<label>Outside :
<input type='color' id='outside' value='#ff0000'/>
</label>
<label>Inside :
<input type='color' id='inside' value='#f37e21'/>
</label>
</div>
</div>
<div class='credits'>
<span>Made by
<a href='https://t.me/WebDevChat'>@WebDevCHAT</a>
</span>
</div>
<script type='text/javascript' src='Component.js'></script>
<script type='text/javascript' src='Clock.js'></script>
</body>
</html>