-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (56 loc) · 2.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=0.5, maximum-scale=1">
<meta name="description" content="A reaction time measurement app">
<meta name="keywords" content="reaction time, reaction">
<meta name="theme-color" content="#ffffff">
<title>Reaction time</title>
<link rel="icon" type="image/svg" href="imgs/timelapse_FILL0_wght400_GRAD0_opsz24.svg">
<link rel="stylesheet" href="css/crimson-days.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,300,0,0" />
</head>
<body>
<div id="page-container" class="full-size">
<div id="result-background"></div>
<div id="text-container">
<nobr id="instructions">
<span>
Press
<span class="material-symbols-outlined label">
space_bar
</span>
or
<span class="material-symbols-outlined label">
mouse
</span>
</span>
<span id="running-test-text" style="display: none;">
when the
<span class="material-symbols-outlined label">
desktop_windows
</span>
turns
<span id="red-fill-label" class="material-symbols-outlined label">
format_color_fill
</span>
</span>
<span id="start-test-text" style="display: inline;">
to
<span class="material-symbols-outlined label">
directions_run
</span>
the test
</span>
</nobr>
<div id="result-text-container">
<span id="reaction-time-text">(waiting to start)</span>
</div>
</div>
<script src="js/src/reaction-time-controller.js"></script>
</div>
</body>
</html>