-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
62 lines (61 loc) · 2.75 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>qambi</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
<link rel="stylesheet" type="text/css" href="./css/fonts.css">
<link rel="stylesheet" type="text/css" href="./css/reset.css">
<!-- <link rel="stylesheet" type="text/css" href="./css/prism.css"> -->
<link rel="stylesheet" type="text/css" href="./css/home.css">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-5081547-11"></script>
<script>
if(window.location.hostname === 'abudaan.github.io'){
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-5081547-11');
}
</script>
</head>
<body class="center">
<div class="logo"><span class="logo_pink">qa</span><span class="logo_blue">m</span><span class="logo_green">bi</span></div>
<div class="pitch">headless MIDI sequencer for your browser</div>
<p>
Headless means that there is no GUI; qambi is intended to be used as an engine behind your application.
You can make any kind of application on top of qambi; a game, an online DAW, artistic sites, music science experiments and so on.
</p>
<p>
Code is available at Github and published under <a href="https://github.com/abudaan/qambi/wiki/license">MIT</a> license. You can add qambi to your project by installing it via npm <code>npm install qambi</code>.
</p>
<p>
Qambi is a rebuild (in progress) of <a href="https://github.com/abudaan/heartbeat">heartbeat</a>, documentation is still very sparse but I am working on it.
Should you have any questions or requests, please don't hesitate to drop me a line or file an <a href="https://github.com/abudaan/qambi/issues">issue</a>.
</p>
<br>
<!--
<div class="cf repos">
<div class="github"><a href="https://github.com/abudaan/qambi" target="blank"><img src="css/github-logo-200px.jpg"></img></a></div>
<div class="npm"><a href="https://npmjs.com/qambi" target="blank"><img src="css/npm-logo-90px.png"></img></a></div>
</div>
-->
</p>
<nav>
<ul>
<!-- <a href="https://github.com/abudaan/qambi/wiki/API"><li>API</li></a> -->
<a href="https://github.com/abudaan/qambi/wiki"><li>DOCS</li></a>
<a href="https://github.com/abudaan/qambi/"><li>GITHUB</li></a>
<a href="./examples"><li>EXAMPLES</li></a>
</ul>
</nav>
<!--
<p>
Below a basic example that loads a MIDI file and an instrument and plays the song. More examples on the examples page <a href="./examples/index.html"><span class="example-link"></span></a>
</p>
<p>
<pre data-src="./js/code-example-homepage.js"></pre>
</p>
-->
<!-- <script src="./js/prism.js"></script> -->
</body>
</html>