-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (51 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
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>数独</title>
<link rel="stylesheet" href="index.css">
</head>
<body class="loading">
<div id="box">
<h1>数 独</h1>
<ul class='numbox'>
<li class='active'>0</li>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
</ul>
<table class="table" >
<tbody class="tbody">
</tbody>
</table>
<div class="levelbtn">
<button class="easy">简单</button>
<button class="middle">中等</button>
<button class="hight">困难</button>
<input type="text" placeholder="自定义数目" id="selfbtn" maxlength="2">
</div>
<div class="butgroup">
<button class="refresh">再来一局</button>
<button class="tips">提示一次</button>
<button class="show">查看答案</button>
<button class="check">检查错误</button>
</div>
<div class="colorbox">
<button class="origincolor">原色</button>
<button class="quescolor">疑问色</button>
</div>
<div class="end">您真是太厉害了!</div>
<div class="wrongend">存在错误哟!请仔细检查!</div>
<div class="real">没有查询到对应的数独,再尝试一次呗!</di