-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathkeyboard.html
More file actions
38 lines (37 loc) · 787 Bytes
/
keyboard.html
File metadata and controls
38 lines (37 loc) · 787 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="js/kontra.js"></script>
<script src="js/TinyMusic.js"></script>
<script src="js/music.js"></script>
<script src="js/startkeyboard.js" charset="utf-8"></script>
<style>
html,body{
margin: 0;
padding: 0;
height: 80%;
background-color: black;
}
#panel{
margin:0;
padding: 0;
}
canvas{
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="panel">
<canvas id='canvas'></canvas>
</div>
</body>
<script>
var cvs = document.getElementById("canvas");
cvs.width = document.documentElement.clientWidth*0.99;
cvs.height = document.documentElement.clientHeight*0.99;
a();
</script>
</html>