-
Notifications
You must be signed in to change notification settings - Fork 33
/
play.html
60 lines (48 loc) · 1.24 KB
/
play.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
<!DOCTYPE html>
<html>
<head>
<title>Quixe</title>
<meta name="viewport" content="width=device-width, user-scalable=no">
<link rel="stylesheet" href="media/glkote.css" type="text/css">
<link rel="stylesheet" href="media/dialog.css" type="text/css">
<style type="text/css">
body {
margin: 0px;
height: 100%;
}
#gameport {
position: absolute;
overflow: hidden;
width: 100%;
height: 100%;
background: #CCAA88;
margin: 0px;
}
</style>
<script src="lib/jquery-1.12.4.min.js" type="text/javascript"></script>
<script src="lib/glkote.min.js" type="text/javascript"></script>
<script src="lib/quixe.min.js" type="text/javascript"></script>
<script type="text/javascript">
game_options = {
use_query_story: false,
log_execution_time: true,
set_page_title: true
};
</script>
<script src="stories/glulxercise.ulx.js" type="text/javascript"></script>
</head>
<body>
<div id="gameport">
<div id="windowport">
<noscript><hr>
<p>You'll need to turn on Javascript in your web browser to play this game.</p>
<hr></noscript>
</div>
<div id="loadingpane">
<img src="media/waiting.gif" alt="LOADING"><br>
<em> Loading...</em>
</div>
<div id="errorpane" style="display:none;"><div id="errorcontent">...</div></div>
</div>
</body>
</html>