-
Notifications
You must be signed in to change notification settings - Fork 1
/
game.html
83 lines (69 loc) · 3.6 KB
/
game.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html manifest="cache.manifest">
<head>
<title>Word Game 0.0.1</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<link rel="stylesheet" href="mobile/1.0rc2/jquery.mobile-1.0rc2.css" />
<link rel="stylesheet" type="text/css" media="screen" href="web-ui-fw/web-ui-fw-widget.css"/>
<script type="text/javascript" src="jquery-1.6.4.js"></script>
<script type="text/javascript" src="mobile/1.0rc2/jquery.mobile-1.0rc2.js"></script>
<script type="text/javascript" src="web-ui-fw/web-ui-fw-libs.js"></script>
<script type="text/javascript" src="web-ui-fw/web-ui-fw.js"></script>
<script type="text/javascript" src="game.js"></script>
</head>
<body>
<div data-role="page" id="intropage">
<div data-role="header">
<h1>Word Game 0.0.1</h1>
</div><!-- /header -->
<div data-role="content">
<h1>Slap Language Game.</h1>
<p>
Welcome to Slap Language Game. This is a simple game that is supposed to help learning. I suppose it might, so why not give it a try?
</p>
<p>
First thing to do is to select the languages you want to be included. By default, it includes all languages - currently Pinyin, Chinese and English.
</p>
<p>
Second, select the word lists you want to include. By default, it includes just the first list, so you probably want to select some more.
</p>
<p>
After you click 'Start game', you will see a table with a column for each language. You need to click a word in one column, and then click the corresponding words in the other two column. When you get a match, the items will be removed from the table. Eventually, the table will be empty and you will have won the game - woo hoo ;)
To play again, use your browser's "back" button and repeat the procedure.
</p>
<fieldset id="keyselection" data-role="controlgroup" data-type="horizontal" data-tole="fieldcontain">
<legend>Languages to include:</legend>
</fieldset>
<fieldset id="lessonselection" data-role="controlgroup" data-type="horizontal" data-tole="fieldcontain">
<legend>Lessons to include:</legend>
</fieldset>
<a href="#tablepage" data-role="button">Start game</a>
</div><!-- /content -->
<div data-role="footer">
<h4>Word Game 0.0.1</h4>
</div><!-- /footer -->
</div><!-- /page -->
<div data-role="page" id="tablepage" data-add-back-btn="true">
<div data-role="header">
<h1>Word Game 0.0.1</h1>
</div><!-- /header -->
<div data-role="content">
<table border="0" width="100%">
<thead>
</thead>
<tbody>
</tbody>
</table>
<div id="popupList" data-role="popupwindow" data-theme="c">
<div data-role="content">
<p></p>
</div>
</div>
</div><!-- /content -->
<div data-role="footer">
<h4>Word Game 0.0.1</h4>
</div><!-- /footer -->
</div><!-- /page -->
</body>
</html>