forked from argoproj/rollouts-demo
-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.html
43 lines (43 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<title>Rollouts Demo</title>
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<div class="header spread">
<img src="logo.png" class="logo" />
<h1>ARGO ROLLOUTS <span class="orange">DEMO</span></h1>
<div class="flex">
<div class="button button--resize" id="resize">FIT</div>
</div>
</div>
<div class="controls">
<div class="control spread">
<div>COLOR</div>
<div class="colors" id="colors"></div>
</div>
<div class="control spread">
<div class="button button--start">START</div>
<div class="button button--stop">STOP</div>
</div>
<div class="control">
<div class="control spread">
<div>LATENCY</div>
<div class="white" id="latency-label">0.0s</div>
</div>
<input type="range" min="0" max="5" value="0" class="slider" id="latency" step="0.1">
</div>
<div class="control">
<div class="control spread">
<div>ERROR</div>
<div class="white" id="error-label">0.0s</div>
</div>
<input type="range" min="0" max="100" value="0" class="slider" id="error" step="1">
</div>
</div>
<div id="grid" class="grid"></div>
<div id="graph" class="graph"></div>
</body>
<script src="main.js"></script>
</html>