-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (73 loc) · 2.78 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Monophonic Ringtone Synthesizer | Output Channel, the audio blog.</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="mrs.css">
</head>
<body>
<a href="https://github.com/edwardball/monophonic-ringtone-synthesizer"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://camo.githubusercontent.com/567c3a48d796e2fc06ea80409cc9dd82bf714434/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f6c6566745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_left_darkblue_121621.png"></a>
<div class="phone-wrapper">
<div class="phone">
<div class="keyboard-wrapper">
<div id='js-keyboard'></div>
</div>
</div>
</div>
<div class="sidebar js-sidebar">
<div class="sidebar-toggle js-sidebar-toggle">
<i class="fa fa-arrow-circle-o-right" title='Show/Hide instructions'></i>
</div>
<div class="sidebar-inner">
<h1>Monophonic Ringtone Synthesizer</h1>
<p>
You can play the Monophonic Ringtone Synthesizer in three ways.
</p>
<p>
First, you can press the keys on your Qwerty keyboard.
For example A, W, S, E play the notes C, C#, D, D# and so on.
</p>
<p>
Secondly, you can click the notes with your mouse (or tap with your finger).
</p>
<p>
Thirdly, if you are using Chrome, you can connect a MIDI keyboard, and play
via that method. If it doesn't work first time, try refreshing or re-connecting.
</p>
<p>
If using the Qwerty Keyboard method, here are some example tunes to get you started.
</p>
<ul>
<li>
<strong>Nokia Theme (Gran Vals)</strong><br />
<em>;lty ojsd jhwdh</em>
</li>
<li>
<strong>Tubular Bells</strong><br />
<em>dhdjdghdkdldjk dhdjdghdkdldjkdjd</em>
</li>
<li>
<strong>The Entertainer</strong><br />
<em>sedk d k d k klp;kl;jlk</em>
</li>
<li>
<strong>Happy Birthday</strong><br />
<em>aasafd aasagf aakh ffds uuhfgf</em>
</li>
</ul>
<p>
Code by <a href="http://ed-ball.com" target="_blank">Ed Ball</a>.
Phone design by <a href="https://dribbble.com/welsewool" target="_blank">Roman Kryzhanovskyi</a>.
</p>
<p>
All the source code can be found on <a href="https://github.com/edwardball/monophonic-ringtone-synthesizer" target="_blank">GitHub.</a> More demos are available at <a href="http://outputchannel.com">outputchannel.com</a>.
</p>
</div>
</div>
<script src='js/qwerty-hancock.js'></script>
<script src='js/mrs.js'></script>
<script src='js/website.js'></script>
</body>
</html>