forked from lovre/stroboskop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstroboskop.html
47 lines (41 loc) · 1.04 KB
/
stroboskop.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
<!DOCTYPE html>
<html>
<head>
<title>..:: Stroboskop ::..</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="stili.css">
<script src="skripta.js"></script>
<script src="jscolor.js"></script>
</head>
<body>
<!-- GLAVA -->
<glava>
<table style="width: 100%;">
<tr>
<td style="width: 200px; text-align:right">
Izberi barve:
</td>
<td style="width: calc(100% - 20px);">
<span id="barve"></span>
<input id="novaBarva" class="rob senca" type="button" value="Dodaj barvo" />
<input id="odstraniBarve" class="rob senca" type="button" value="Odstrani barve" />
</td>
<td rowspan="2" style="width: 300px;">
<button id="start" class="rob senca">Zaženi stroboskop</button>
</td>
</tr>
<tr>
<td style="text-align:right">
Časovni interval:
</td>
<td>
od najmanj <input id="min" value="50" /> ms do največ
<input id="max" value="500" /> ms
</td>
</tr>
</table>
</glava>
<!-- TELO -->
<telo id="stroboskop" class="rob senca"></telo>
</body>
</html>