-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.65 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
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs/dist/tf.min.js"></script>
<script src="https://unpkg.com/[email protected]/build/Tone.js"></script>
<script src="https://cdn.babylonjs.com/babylon.js"></script>
<script src="https://cdn.babylonjs.com/loaders/babylonjs.loaders.min.js"></script>
<script src="https://code.jquery.com/pep/0.4.3/pep.js"></script>
<script src="/chorder/main.js" type="module"></script>
<head>
<link rel="icon" href="https://previews.123rf.com/images/nikiteev/nikiteev1806/nikiteev180600041/103688538-vector-doodle-sketch-illustration-the-letter-k.jpg">
<meta name="google-site-verification" content="7AMrhrpDm2jW2MPORp4vga--ZbugFzIVNiIvT82Iank" />
<meta name="description" content="Infinite Bach melody sanctuary">
<meta name="keywords" content="Bach, LSTM, neural, network">
<meta name="author" content="Jakub Belicki">
<meta property="og:title" content="Infinite Bach melody sanctuary" />
<meta property="og:description" content="It will play until you die" />
<meta property="og:image" content="https://www.codeproject.com/KB/cross-platform/5165357/unrolled-lstm-network.png" />
<title>Infinite Bach melody sanctuary</title>
</head>
<body>
<div class="canvas-container">
<canvas id="canvas" touch-action="none"></canvas>
<button id="button">PLAY</button>
</div>
</body>
<style>
.canvas-container{
position: relative;
width: 100%;
height: 100%
}
#canvas {
position: absolute;
width: 100%;
height: 100%
}
#button {
position:absolute;
left:10%;
top:10%
}
</style>