-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·44 lines (41 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=768px">
<link href="game.ico" rel="shortcut icon">
<script src="md5.js"></script>
<script src="module.js"></script>
<script src="index.js"></script>
<link rel="stylesheet" href="index.css">
<title>I Am Alive-Hi!</title>
</head>
<body>
<div id="cover"></div>
<div id="toloadin">
<h2>在这里填入您的存档</h2>
<br>
<textarea id="tanchuin"></textarea>
<br>
<button class="button in" onclick="load()">确定</button>
</div>
<div id="author">
<h3>这是Clef和Cherrling共同设计的第一款游戏</h3><br> 部分设计取自《小黑屋》
<br> 策划:Clef <br> 开发:Cherrling <br> 测试:Clef,Salt_lovely,冰寻 <br> 技术指导:Salt_lovely <br>
<br>
<button class="button in" onclick="author(0)">确定</button>
</div>
<h1 style="text-align: center; font-size: 60px;">I Am Alive</h1>
<button class="button" onclick="start()">开始游戏</button>
<br>
<button class="button" onclick="loadin()">导入存档</button>
<br>
<button class="button" onclick="author(1)">作者的话</button>
<br>
<button class="button" onclick="github()">Github</button>
<br>
<button class="button" onclick="gitee()">Gitee</button>
<br>
<button class="button" onclick="record()">开发日志</button>
</body>
</html>