-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (40 loc) · 1.06 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
<!DOCTYPE html>
<html>
<!--
Created with Squiffy 5.1.3
https://github.com/textadventures/squiffy
-->
<head>
<title>GAMETITLE</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="jquery.min.js"></script>
<script src="story.js" charset="UTF-8"></script>
<script>
jQuery(function($){
$('#squiffy').squiffy();
var restart = function () {
$('#squiffy').squiffy('restart');
};
$('#restart').click(restart);
$('#restart').keypress(function (e) {
if (e.which !== 13) return;
restart();
});
});
</script>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div id="squiffy-container">
<div id="squiffy">
</div>
<div id="image-support">
<img src="assets/credit.png" style="height: 600px; width: 420px;"/>
</div>
</div>
<div id="squiffy-header">
<a class="squiffy-header-link" id="restart" tabindex="0">Restart</a>
</div>
</body>
</html>