-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.html
75 lines (75 loc) · 1.37 KB
/
app.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
<html>
<head>
<style>
canvas {
float: left;
border: solid 1px gray;
border-right: 0;
}
textarea {
height: 302px;
width: 200px;
float: left;
}
.demo {
clear: both;
font-family: monospace;
white-space: pre;
background-color: #ddd;
width: 200px;
margin: 10px;
}
.demo:hover{
cursor: pointer;
}
.demo:before {
content: "Click to load";
font-family: sans-serif;
text-align: right;
font-size: 10px;
float:right;
}
</style>
<script>
function pcre_compile_stub() {}
function pcre_config_link_size_stub() {}
function pcre_config_match_limit_recursion_stub() {}
function pcre_config_match_limit_stub() {}
function pcre_config_newline_stub() {}
function pcre_config_stackrecurse_stub() {}
function pcre_config_utf8_stub() {}
function pcre_ocaml_init() {}
function pcre_set_imp_match_limit_recursion_stub() {}
function pcre_set_imp_match_limit_stub() {}
function pcre_study_stub() {}
function pcre_version_stub() {}
function caml_ml_output_char() {}
</script>
</head>
</body>
<div id="shmup"></div>
<div class="demo">
action top (
repeat 500 (
fire ();
wait 15;
);
);
</div>
<div class="demo">
action top (
repeat 500 (
fire (
repeat 10 (
wait 60;
speed 0;
wait 60;
speed 1;
);
);
wait 10;
);
);
</div>
<script src="_build/jsapp.js"></script>
</body>