forked from kunstmusik/csound-live-code
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
111 lines (102 loc) · 3.22 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<title>Live Coding with Csound</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#000000" />
<meta property="og:title" content="Live Coding with Csound" />
<meta
property="og:description"
content="Live code music in WebAssembly-enabled browsers using Csound."
/>
<meta
property="og:image"
content="http://live.csound.com/web/og_image.png"
/>
<meta property="og:url" content="http://live.csound.com" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.1.1/css/all.css"
integrity="sha384-O8whS3fhG2OnA5Kas0Y9l3cfpmYjapjI0E4theH4iuMD+pLhbf6JI0jIMfYcK3yZ"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Raleway|Roboto:400,700"
rel="stylesheet"
/>
<link rel="stylesheet" href="web/codemirror.css" />
<link rel="stylesheet" href="web/theme/monokai.css" />
<link rel="stylesheet" href="web/cslivecode.css" />
<script src="web/codemirror.js"></script>
<script src="web/mode/csound/csound.js"></script>
<script src="web/addon/comment/comment.js"></script>
<script src="web/addon/edit/matchbrackets.js"></script>
<script src="web/addon/edit/closebrackets.js"></script>
<script src="web/keymap/vim.js"></script>
<script src="web/keymap/emacs.js"></script>
<link rel="manifest" href="web/manifest.json" />
<!---- GOLDEN LAYOUT -->
<script
type="text/javascript"
src="https://code.jquery.com/jquery-1.11.1.min.js"
></script>
<script
type="text/javascript"
src="https://golden-layout.com/files/latest/js/goldenlayout.min.js"
></script>
<link
type="text/css"
rel="stylesheet"
href="https://golden-layout.com/files/latest/css/goldenlayout-base.css"
/>
<link
type="text/css"
rel="stylesheet"
href="https://golden-layout.com/files/latest/css/goldenlayout-dark-theme.css"
/>
</head>
<body>
<div id="loadDiv">
<code>... L O A D I N G C S O U N D ...</code>
</div>
<header>
<h1>csound-live-code</h1>
<nav>
<i
id="playPauseButton"
class="bar-btn fas fa-pause-circle"
title="Pause Engine"
></i>
<i
id="restartButton"
class="bar-btn fas fa-redo-alt"
title="Restart Engine"
></i>
<i
id="evalNowButton"
class="bar-btn fas fa-code"
title="Evaluate Now"
></i>
<i
id="evalMeasureButton"
class="bar-btn fas fa-code"
title="Evaluate at Measure"
></i>
</nav>
<i
id="helpButton"
class="bar-btn fas fa-question-circle"
style="float:right"
title="Open Documentation in new Window"
></i>
</header>
<!--<div id="csoundCodeEditor"></div>-->
<div id="layoutRoot"></div>
<!--<script src="web/csound/libcsound.mjs" type="module"></script>-->
<script src="web/cslivecode.js" type="module"></script>
</body>
</html>