-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (27 loc) · 1.28 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Voice Trainer 2.0</title>
<link rel="stylesheet" type="text/css" href="styles/styles.css"/>
</head>
<body background="styles/images/wood_pattern.png">
<h1 class="title"> Voice Trainer 2.0 </h1>
<!-- <p class="intro"> Want to sing like Utada Hikaru? I got you!</p> -->
<p class="guide">Click the button to start microphone input.</p>
<div class="help">
</div>
<button class="liveBut" onclick="toggleLiveInput()">Click to start Microphone</button>
<!-- <button onclick="toggleOscillator()">use oscillator</button> -->
<div id="detector" class="vague">
<div class="pitch"><span id="pitch">--</span>Hz</div>
<div class="note"><span id="note">--</span></div>
<canvas id="output" width=300 height=42></canvas>
<div id="detune"><span id="detune_amt">--</span><span id="flat">cents ♭</span><span id="sharp">cents ♯</span></div>
</div>
<div id="gauge" class="200x160px"></div>
<script src="bower_components/d3/d3.min.js"></script>
<script src="app/app.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
</body>
</html>