forked from stewdio/beep.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·56 lines (51 loc) · 2.28 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=600">
<meta name="description" content="Beep is a JavaScript framework for building browser-based synthesizers.">
<meta name="keywords" content="Beep Beep.js Beep-js BeepJS Browser Synthesizer synth music tone generation HTML5 WebAudio WebAudioAPI JS JavaScript Stewdio Stewart Smith">
<meta name="copyright" content="Stewart Smith 2015">
<meta property="og:type" content="website">
<meta property="og:title" content="Beep.js">
<meta property="og:description" content="Beep is a JavaScript framework for building browser-based synthesizers.">
<meta property="og:url" content="http://beepjs.com">
<meta property="og:image" content="http://beepjs.com/media/beep-poster.png">
<title>Beep.js</title>
<link rel="icon" type="image/png" href="media/favicon-064.png">
<link rel="apple-touch-icon" href="media/favicon-144.png">
<link rel="stylesheet" type="text/css" href="styles/base.css">
<script charset="utf-8" src="scripts/beep.js"></script>
<script charset="utf-8" src="scripts/beep.notes.js"></script>
<script charset="utf-8" src="scripts/beep.voices.js"></script>
<script charset="utf-8" src="scripts/beep.triggers.js"></script>
<script charset="utf-8" src="scripts/beep.instruments.js"></script>
<script charset="utf-8" src="scripts/analytics.js"></script>
<script charset="utf-8" src="scripts/app.js"></script>
<script charset="utf-8" src="scripts/example.js"></script>
</head>
<body>
<div id="fullscreen-container">
<h1>beep<span id="play-pause-container"></span></h1>
<div id="synth"></div>
<!--
Were you looking for the source code?
https://github.com/stewdio/beep
-->
</div>
<div class="button" id="fullscreen"></div>
<footer>
<div class="button" id="github"></div>
<div class="button" id="twitter"></div>
<div class="button" id="facebook"></div>
<br>
Build your own? <a target="_blank" href="https://github.com/stewdio/beep.js" title="Beep.js on GitHub">Get the code</a>.
</footer>
<div id="cache">
<img src="media/buttons/play-hover.svg">
<img src="media/buttons/pause.svg">
<img src="media/buttons/pause-hover.svg">
<img src="media/buttons/fullscreen-hover.svg">
</div>
</body>
</html>