-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·34 lines (34 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head><meta charset="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<title>Charmonika v2</title>
<script src="processing-1.4.1.min.js"></script>
<script>
var i = 0;
window.onclick = function() {
if (i == 0) {
playSound(bufferLoader.bufferList[i]);
i++;
}
}
</script><link rel="stylesheet" href="style.css"></head>
<body>
<div id="msg"></div>
<div id="container">
<div id="start">
<p>Loading...</p>
<progress id='p' value='.87'>
<span>50</span>%</progress>
</div>
<canvas data-processing-sources="qkeys.pde" id="canv">
<p>Unfortunately, your browser is unable to load this program. Please try one of the programs below. If you already use one of these browsers but you are receiving this message anyway, please contact me.</p>
<p>Supported browsers:
<a href="http://www.opera.com">Opera</a>,
<a href="http://www.mozilla.com">Firefox</a>,
<a href="http://www.apple.com/safari">Safari</a>, and
<a href="http://www.konqueror.org">Konqueror</a>.</p>
</canvas>
</div>
<script src="sound.js"></script>
</body>
</html>