-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (41 loc) · 1.62 KB
/
Copy pathindex.html
File metadata and controls
49 lines (41 loc) · 1.62 KB
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>拼图</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery可以自由打乱拼图次序游戏</title>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<link href="css/style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div class="wrap clearfix">
<div class="play_wrap">
<div id="play_area"></div>
</div>
<div class="play_menu">
<a id="play_btn_start" class="play_btn" href="javascript:void(0);" unselectable="on">开始</a>
<a id="play_btn_level" class="play_btn" href="javascript:void(0);" unselectable="on">
<span class="level_text">4 x 4</span>
<span class="level_icon"></span>
</a>
<div class="level_menu" id="play_menu_level">
<ul>
<li><a href="javascript:void(0);" level=0 >3 x 3</a></li>
<li><a href="javascript:void(0);" level=1 >4 x 4</a></li>
<li><a href="javascript:void(0);" level=2 >6 x 6</a></li>
</ul>
</div>
<p>完成:<span id="play_score">0</span></p>
<p>交换:<span id="play_count">0</span></p>
<p>说明:<br>
-点击开始,小图片将随机打乱;<br>
-拖动小图片可交换位置,顺序完全正确则为成功;<br>
-难度分“3x3”、“4x4”、“6x6”三级;<br>
-对应的分值为100、200、400;
</p>
</div>
</div>
</body>
</html>