-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
145 lines (129 loc) · 3.37 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!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>K-Means</title>
<link rel="stylesheet" href="styles/style.css" />
</head>
<body>
<header id="menu">
<div id="reset-button-section">
<button
class="action-button"
id="reset"
onclick="handleResetButtonClick()"
>
Reset
</button>
</div>
<section id="algorithms-section">
<label for="algorithm"> Clustring algorithm: </label>
<select name="algorithm" id="algorithm">
<option value="kmeans">K-Means</option>
<option value="kmedoids">K-Medoids</option>
<option value="xmeans">X-Means</option>
</select>
</section>
<section id="algorithms-options-section">
<label for="clusters-count"> Clusters count: </label>
<input
type="text"
name="clusters-count"
id="clusters-count"
value="2"
/>
</section>
<section id="run-modes-section" onchange="handleChangeOfRunModes()">
<label for="run-mode"> Run modes: </label>
<select name="run-mode" id="run-mode">
<option value="just-result">Just Result</option>
<option value="animational">Animational</option>
<option value="step-by-step">Step By Step</option>
</select>
</section>
<section id="run-modes-extra-options-section" hidden>
<section id="speed-option-section">
<label for="speed"> Amination speed: </label>
<select name="speed" id="speed">
<option value="0.5">0.5x</option>
<option value="1" selected="selected">1x</option>
<option value="2">2x</option>
</select>
</section>
</section>
<section id="buttons-section">
<button
class="action-button"
id="run"
onclick="handleRunButtonClick()"
>
Run
</button>
<div
class="action-button"
id="pause-play-button-wrapper"
title="Press 'P' or 'Space'"
onclick="handlePausePlayButtonClick()"
>
<button class="playing" id="pause-play-button" />
</div>
<div id="next-previous-buttons-wrapper">
<button
class="action-button"
id="first-button"
onclick="handleFirstButtonClick()"
disabled
>
<<
</button>
<button
class="action-button"
id="previous-button"
onclick="handlePreviousButtonClick()"
disabled
>
<
</button>
<button
class="action-button"
id="stop-button"
onclick="handleStopButtonClick()"
>
stop
</button>
<button
class="action-button"
id="next-button"
onclick="handleNextButtonClick()"
>
>
</button>
<button
class="action-button"
id="last-button"
onclick="handleLastButtonClick()"
>
>>
</button>
</div>
</section>
</header>
<section id="run-info">
<section id="iteraction-into-section">
<label>Iteration #<span id="iteration-number"></span></label>
</section>
<section id="sse-section">
<label>SSE: <span id="sse"></span></label>
</section>
</section>
<section id="chart"></section>
<script src="js/constants.js"></script>
<script src="js/utilities.js"></script>
<script src="js/point.js"></script>
<script src="js/kmeans.js"></script>
<script src="js/menu.js"></script>
<script src="js/main.js"></script>
</body>
</html>