-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 1.41 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
<html>
<!-- This document is VERY crude and does not provide any SEO niceties -->
<head>
<title>Monochord Demo</title>
<link rel="stylesheet" type="text/css" href="bundle.css"/>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:300|Lobster"/>
<script type="application/javascript" src="bundle.js"></script>
</head>
<body>
<div class="header">
<h1 class="title">MonoChord Demo</h1>
<p class="headline">The outer circles represent a monochord; they span a few octaves. You can directly change their pitch (in Hertz) by dragging their colored region. Inner circles act as tuning pegs and allow altering the tuning with more precision; spinning a full turn on the middle one will detune the monochord by about a semitone, and the innermost will make really micro-tonal adjustments. Press the button on the middle to enable or disable that monochord, and press the space bar to play the enabled ones. Have fun!</p>
<div class="button-group">
<button class="play-btn">▶ Play</button>
<button class="freq-btn">Show frequencies</button>
<button class="link-btn">Save</button>
</div>
<div class="string"></div>
</div>
<div class="container">
<!-- Here go the monochords -->
</div>
</body>
</html>