-
Notifications
You must be signed in to change notification settings - Fork 33
/
play-remote-full.html
64 lines (53 loc) · 1.57 KB
/
play-remote-full.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
<!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="src/glkote/glkote.js" type="text/javascript"></script>
<script src="src/glkote/gi_blorb.js" type="text/javascript"></script>
<script src="src/glkote/dialog.js" type="text/javascript"></script>
<script src="src/glkote/glkapi.js" type="text/javascript"></script>
<script src="src/quixe/quixe.js" type="text/javascript"></script>
<script src="src/quixe/gi_dispa.js" type="text/javascript"></script>
<script src="src/quixe/gi_load.js" type="text/javascript"></script>
<script type="text/javascript">
game_options = {
default_story: 'stories/glulxercise.ulx',
use_query_story: true,
log_execution_time: true,
set_page_title: true
};
</script>
</head>
<body onload="GiLoad.load_run();">
<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>