76 lines
2.2 KiB
HTML
76 lines
2.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="color-scheme" content="light dark">
|
|
<link rel="stylesheet" href="pico.min.css">
|
|
<link rel="stylesheet" href="index.css">
|
|
<script src="index.js"></script>
|
|
<title>Tooner 0</title>
|
|
</head>
|
|
<body>
|
|
<main class="container">
|
|
<article>
|
|
<div id="keyboard" class="overflow-auto"></div>
|
|
<label>
|
|
Volume
|
|
<input type="range" min="0.0" max="2.0" value="1.0" step="0.01" id="range">
|
|
</label>
|
|
</article>
|
|
<section id="options">
|
|
<form>
|
|
<article>
|
|
<h3 id="current-note">-</h3>
|
|
<label>
|
|
<input type="checkbox" role="switch" id="hold">
|
|
Hold
|
|
</label>
|
|
</article>
|
|
<article>
|
|
<label>
|
|
<small>Frequency</small>
|
|
<input type="number" id="current-frequency" step="0.01">
|
|
</label>
|
|
</article>
|
|
<article>
|
|
<fieldset>
|
|
<legend><small>Tuning</small></legend>
|
|
<label>
|
|
<input type="radio" name="tuning">
|
|
Equal temperament
|
|
</label>
|
|
<label>
|
|
<input type="radio" name="tuning">
|
|
Perfect 5th
|
|
</label>
|
|
<label>
|
|
<input type="radio" name="tuning">
|
|
Perfect 4th
|
|
</label>
|
|
<label>
|
|
<input type="radio" name="tuning">
|
|
Perfect major 3rd
|
|
</label>
|
|
<label>
|
|
<input type="radio" name="tuning">
|
|
Perfect minor 3rd
|
|
</label>
|
|
<div id="tune-from" style="display: none">
|
|
<label>
|
|
From:
|
|
<select name="tuning-from">
|
|
<option selected disabled value></option>
|
|
<option>C2</option>
|
|
</select>
|
|
</label>
|
|
</div>
|
|
<button>Tune</button>
|
|
</fieldset>
|
|
</article>
|
|
</form>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|