-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 2.12 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>DAGDAD : simple guitar tuner for Firefox OS</title>
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style/building-blocks/util.css">
<link rel="stylesheet" type="text/css" href="style/building-blocks/headers.css">
<link rel="stylesheet" type="text/css" href="style/building-blocks/drawer.css">
<link rel="stylesheet" type="text/css" href="style/building-blocks/layout.css">
<link rel="stylesheet" type="text/css" href="style/style.css">
</head>
<body>
<section data-type="sidebar">
<header>
<menu type="toolbar">
<a href="#content">Done</a>
</menu>
<h1>Tuner settings</h1>
</header>
<nav>
<h2>Tuner Type</h2>
<ul id="set-tuner-type">
</ul>
<h2>About</h2>
<ul>
<li><a href="https://github.com/djibux/dadgad#dadgad" target="blank">Read more about this app</a></li>
<li> <!-- This line is useful to see the previous one... Display bug in Building Blocks? --></li>
<li> <!-- This line is useful to see the previous one... Display bug in Building Blocks? --></li>
</ul>
</nav>
</section>
<section id="drawer" role="region" class="vbox fit">
<header>
<a href="#content"><span class="icon icon-menu">hide sidebar</span></a>
<a href="#drawer"><span class="icon icon-menu">show sidebar</span></a>
<h1 id="app-title">Tuner</h1>
</header>
<section class="gaia-list fit sticky">
<div role="main" id="tuner">
<p id="low-note-indicator"></p>
<p id="closest-note">-</p>
<p id="high-note-indicator"></p>
</div>
<canvas id="canva" width=400 height=200></canvas>
</section>
<footer class="gaia-footer">
<p>
Detected frequency: <span id="detected-frequency"></span>
<br />
Gap to closest note: <span id="gap"></span>
</p>
</footer>
</section>
<script src="scripts/notes.js"></script>
<script src="scripts/tuning.js"></script>
<script src="scripts/array_tools.js"></script>
<script src="scripts/capture.js"></script>
<script src="scripts/app.js"></script>
</body>
</html>