tooner/index.html

65 lines
2.1 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="volume">
</label>
</article>
<section id="options">
<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>
<label>
<small id="adjust-value">- Hz</small>
<input type="range" min="0.944" max="1.059" value="1.0" step="0.001" id="adjust">
</label>
</article>
<article>
<fieldset>
<legend><small>Tuning</small></legend>
<select id="tuning">
<option value="equal">Equal</option>
<option value="perfect-5th">Perfect 5th</option>
<option value="lower-5th">Lower 5th</option>
<option value="quartmean-5th">Quarter-comma meantone 5th</option>
<option value="quartmean-lower-5th">Quarter-comma meantone lower 5th</option>
<option value="perfect-3rd">Perfect major 3rd</option>
</select>
<label>
From:
<select id="tuning-from"></select>
</label>
<button id="tune">Tune</button>
</fieldset>
</article>
<article>
<button class="secondary" id="reset">Reset all</button>
<button class="secondary" id="zero">Zero all</button>
</article>
</section>
</main>
</body>
</html>