-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (121 loc) · 6.2 KB
/
index.html
File metadata and controls
121 lines (121 loc) · 6.2 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Scattered Elements</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="Title">
<h1>Scatterred Elements / Разбрасывание элементов</h1>
</div>
<div class="FlexMain">
<div class="FlexArea Flex1">
<div class="ContainerInfo">
<div class="ExampleElement Allowed"></div>
<span>Разрешённые для выбрасывания элементы</span>
<br>
<div class="ExampleElement Blocked"></div>
<span>Запрещённые для выбрасывания элементы</span>
</div>
<div id="ElementsContainer"></div>
</div>
<div class="FlexArea Flex2">
<h4 class="H4Background">Инфополе:</h4>
<textarea class="TextInfo" tabindex="-1" readonly></textarea>
</div>
<div class="Flex3">
<div class="Flex3-1">
<div class="FlexArea Flex3-1-1">
<h4 class="H4Background">Настраиваемые параметры:</h4>
<table class="Table-ContSizes">
<tr>
<td class="Description" rowspan="10">Размеры контейнера: <img src="img/open_brace.png" alt="Open Brace"></td>
<td class="Size">
<label><input name="ContainerSize" type="radio" value="1"> 1 x 1</label>
</td>
</tr>
<tr>
<td class="Size">
<label><input name="ContainerSize" type="radio" value="2"> 2 x 2</label>
</td>
</tr>
<tr>
<td class="Size">
<label><input name="ContainerSize" type="radio" value="3"> 3 x 3</label>
</td>
</tr>
<tr>
<td class="Size">
<label><input name="ContainerSize" type="radio" value="4"> 4 x 4</label>
</td>
</tr>
<tr>
<td class="Size">
<label><input name="ContainerSize" type="radio" value="5" checked> 5 x 5</label>
</td>
</tr>
<tr>
<td class="Size">
<label><input name="ContainerSize" type="radio" value="6"> 6 x 6</label>
</td>
</tr>
<tr>
<td class="Size">
<label><input name="ContainerSize" type="radio" value="7"> 7 x 7</label>
</td>
</tr>
<tr>
<td class="Size">
<label><input name="ContainerSize" type="radio" value="8"> 8 x 8</label>
</td>
</tr>
<tr>
<td class="Size">
<label><input name="ContainerSize" type="radio" value="9"> 9 x 9</label>
</td>
</tr>
<tr>
<td class="Size">
<label><input name="ContainerSize" type="radio" value="10"> 10 x 10</label>
</td>
</tr>
</table>
</div>
<div class="FlexArea Flex3-1-2">
<ul class="ParametersList">
<li class="ParamListLine">
<label for="ScatterGroup">Кол-во выбрасыв. элементов в группе, <i>шт. (1 - 100)</i>:</label>
<input id="ScatterGroup" type="number" value="5" min="1" max="100">
</li>
<li class="ParamListLine">
<label for="TimeScatter">Время разброса (без учёта задержки), <i>мс (200 - 1800)</i>:</label>
<div id="TimeScatter" class="slider">
<div class="thumb"></div>
</div>
</li>
<li class="ParamListLine">
<label for="MaxTimeStart">Макс. задержка (для элем. в гр. выброса > 1), <i>мс (0 - 2000)</i>:</label>
<div id="MaxTimeStart" class="slider">
<div class="thumb"></div>
</div>
</li>
<li class="ParamListLine">
<label for="MaxScatterLength">Макс. длина разброса, <i>пкс (0 - 1000)</i>:</label>
<div id="MaxScatterLength" class="slider">
<div class="thumb"></div>
</div>
</li>
</ul>
</div>
</div>
<div class="FlexArea Flex3-2">
<div class="ClickingObject" tabindex="0">
<p><b>Разбросать элементы!</b></p>
</div>
</div>
</div>
</div>
<script src="script.js" type="module"></script>
</body>
</html>