-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
52 lines (50 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="initial-scale=1, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0, width=device-width">
<meta name="screen-orientation" content="portrait">
<title>The Fast and The Words</title>
</head>
<script src="script/jquery-1.12.3.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/index.css">
<body>
<div id="container">
<div id="guidePanel"></div>
<div id="wordListPanel">
<div id="coming">Coming Words</div>
<div id="wordList">
</div>
<div id="start">Got it</div>
</div>
<div id="gamepanel">
<div class="score-wrap">
<span id="chinese"></span>
</div>
<div class="score-wrap1">
<span id="english"></span>
</div>
<canvas id="stage" width="320" height="568"></canvas>
</div>
<div id="gameoverPanel"></div>
<div id="successPanel">
<div class="btn-wrapper">
<button class="btn1">Again</button>
<button class="btn2">New Words</button>
</div>
</div>
<div id="resultPanel">
<div id="scorecontent">
<span id="sChinese" class="lighttext">勾</span>的正确拼写是:<br />
<span id="sEnglish" class="lighttext">d1og</span><br />
<div class="btn-wrapper">
<button class="btn1">Again</button>
<button class="btn2">New Words</button>
</div>
</div>
</div>
</div>
</body>
<script src="script/game.js">
</script>
</html>