-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex-pjs.html
More file actions
38 lines (28 loc) · 840 Bytes
/
index-pjs.html
File metadata and controls
38 lines (28 loc) · 840 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
<!-- file:///Users/dhowe/Documents/javascript-workspace/MemoryJS -->
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script src="lib/jquery-min.js"></script>
<script src="lib/processing.js"></script>
<script src="lib/rita.js"></script>
<script src="lib/rita-wordnet.js"></script>
<script src="memory-pjs.js"></script>
<body>
<audio src="bells3.mp3" loop autoplay></audio>
<div id='content'></div>
<canvas id="canvas" width="1100" height="800" style="border: 1px;"></canvas>
<script>
canvas.addEventListener('click', function(){
_onclick();
});
</script>
<br><font size=1>Memory by A. B. Soderman</font>
<script type="text/processing" data-processing-target="canvas">
/* @pjs font="LondonBetween.ttf"; */
void setup() {
size(1100, 800);
_setup(this);
}
void draw() {
_draw(this);
}
</script>
</body>