-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandom.html
More file actions
36 lines (35 loc) · 1.16 KB
/
random.html
File metadata and controls
36 lines (35 loc) · 1.16 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
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="style.css" />
<title>Morse</title>
</head>
<script src="lib.js"></script>
<script src="random.js"></script>
<body>
<div id="div_state"></div>
<div id="div_length"></div>
<div id="div_version"></div>
<div id="div_config"></div>
<i><div id="div_text"></div></i>
<div id="div_morse_as_text"></div>
<div id="div_morse_as_block" class="box black"></div>
<button onclick="get_new()">Load</button>
<button onclick="start_sound()">Play</button>
<button onclick="stop_sound()">Stop sound</button><br/>
<br>
<button onclick="play_flash()">Flash</button>
<button onclick="stop_flash()">Stop flash</button><br/>
<br>
<button onclick="display_morse()">Display</button>
<button onclick="display_text()">Reveal</button><br/>
wpm
<input id="slide_wpm" style="width:100%" type="range" min="10" max="25" step="1" onInput="set_wpm(this.value)"/>
<br/>
Farnrwsorth
<input id="slide_farn" style="width:100%" type="range" min="1" max="25" step="1" onInput="set_farn(this.value)"/>
<br/>
<textarea id="answer" rows="5" cols="30"></textarea>
</body>
</html>