-
Notifications
You must be signed in to change notification settings - Fork 0
/
game-2048.html
60 lines (40 loc) · 1.47 KB
/
game-2048.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2048介绍</title>
<link rel="icon" href="./img/icon.ico" type="image/x-icon">
<link rel="shortcut icon" href="./img/icon.ico" type="image/x-icon">
</head>
<body bgcolor="#d0d0d0">
<h1>2048</h1>
<p>这是一款2048小游戏</p>
<p>游戏规则请自行搜索, 此小游戏模仿网络自创</p>
<p>这款游戏有许多瑕疵, 求各位大佬指出</p>
<h3>作者</h3>
<p>w-flower(邮箱: [email protected])</p>
<h3>我为什么开发这个游戏</h3>
<p>因为我是一个新手, 我想训练一下我的算法, 起初只是控制台程序, 但是后来我又想练练界面编程, 于是就变成了GUI</p>
<h2>如何开始</h2>
<p>下载之后解压, 打开文件夹, 找到"2048(开始游戏)"文件, 点击打开即可</p>
<h2>用的软件</h2>
- wxformbuider
- python3.8.3
<h2>功能</h2>
<p>- 战绩:通过本地record.txt存储</p>
<p>- 简陋的日志:bug.txt</p>
<p>- 2048主功能</p>
<p>- 难度调整</p>
<p>- 人机对战(开发中)</p>
<h2>怎么玩</h2>
<h3>目标</h3>
<p>获得2048方块(可以调整为其他方块)</p>
<h3>操作</h3>
<p>- w: 方块向上</p>
<p>- a: 方块向左</p>
<p>- s: 方块向下</p>
<p>- d: 方块向右</p>
我会一直勤快的更新的~~(x)
</body>
</html>