-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
159 lines (156 loc) · 4.46 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pandemic Simulator</title>
<link
href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div id="graph"></div>
<div
class="container h100 flex direction-column-reverse align-center justify-center"
>
<canvas class="canvas"></canvas>
<div class="flex justify-between align-center w100 py1">
<div class="col col-2">
<div class="actions">
<button class="actions__start">Start</button>
<button class="actions__stop" style="display:none;">Stop</button>
<button class="actions__reset">Reset</button>
</div>
<div class="settings flex">
<div class="col">
<label
>Immune (%)
<input
type="number"
min="0"
max="100"
step="0.5"
data-percent="data-percent"
name="IMMUNITY_RATIO"
placeholder="1"
/>
</label>
<label
>Transmission radius
<input
type="number"
min="0"
max="700"
step="0.5"
name="TRANSMISSION_RADIUS"
placeholder="15"
/>
</label>
</div>
<div class="col">
<label
>Transmission (%)
<input
type="number"
min="0"
max="100"
step="0.1"
data-percent="data-percent"
name="TRANSMISSION_PROBABILITY"
placeholder="1"
/>
</label>
<label
>Starting population
<input
type="number"
min="1"
max="5000"
step="1"
name="STARTING_POPULATION"
placeholder="1000"
/>
</label>
</div>
<div class="col">
<label
>Starting infections
<input
type="number"
min="0"
max="5000"
step="1"
name="STARTING_INFECTIONS"
placeholder="3"
/>
</label>
<label
>Percent quarantined
<input
type="number"
min="0"
max="100"
step="0.1"
data-percent="data-percent"
name="SELF_QUARANTINED"
placeholder="1"
/>
</label>
</div>
<div class="col">
<label
>Death Rate
<input
type="number"
min="0"
max="100"
step="0.1"
name="DEATH_RATE"
placeholder="3"
/>
</label>
<label
>Recovery Time (ticks)
<input
type="number"
min="0"
max="100"
step="0.1"
data-percent="data-percent"
name="RECOVERY_TIME"
placeholder="2000"
/>
</label>
</div>
</div>
</div>
<ul class="legend col col-1">
<li>
<div class="key key--white"></div>
<p>Healthy</p>
</li>
<li>
<div class="key key--red"></div>
<p>Infected</p>
</li>
<li>
<div class="key key--lime"></div>
<p>Immune</p>
</li>
<li>
<div class="key key--blue"></div>
<p>Self Quarantined</p>
</li>
<li>
<div class="key key--darkgreen"></div>
<p>Recovered</p>
</li>
</ul>
</div>
</div>
<script src="https://cdn.plot.ly/plotly-latest.js"></script>
<script src="./index.js"></script>
</body>
</html>