-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (89 loc) · 2.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
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
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>记忆练习 -『皇家娱乐』</title>
<link rel="stylesheet" href="src/style.css">
<script type="text/javascript" src="src/script.js"></script>
</head>
<body>
<div id="IKBox">
<button id="IExit" onclick="IMsgbox.style.display='block'">投<br />降</button>
<div class="HKeybd">
请输入第 <span id="ITip"></span> 次出现的数
<div id="ICon">_</div>
<table border="1">
<tr>
<td> 7 </td>
<td> 8 </td>
<td> 9 </td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td colspan="2">退格</td>
<td>0</td>
</tr>
</table>
</div>
<div id="IMsgbox" class="bodylike">
<div>
来投降吗?<br />
<button onclick="IMsgbox.style.display='none'" class="HBtn">不要</button>
<button onclick="IBoom.style.display='block'" class="HBtn">好的</button>
</div>
</div>
<div id="IBoom" class="bodylike">
<div class="HHead" id="IHead">
<span class="HHMt">你投降了</span>
</div>
<span class="HText" style="font-size: 8vw;">
<span style="font-size: 12vh;">哇!</span><br />
你成功记住了<br />
<span id="ICount" style="font-size: 30vw;"></span>个数<br />
再接再厉!<br /><br />
<button onclick="IHover.style.right = '0';setTimeout(() => location.href = location.href, 100)" class="HBtn">再来</button>
</span>
</div>
<div class="bodylike HMain" style="background: #000;z-index: 999999;" id="IHover"></div>
</div>
<div class="HMain bodylike" name="DMain">
<div class="HHead" id="IHead">
<span class="HHMt">『皇家娱乐』</span>
<span class="HHDesc">练习本</span>
</div>
<div class="HMenu">
<div class="HTitle HText">记忆练习</div>
<br /><br />
<button class="HBtn" id="IStart">开始</button>
<br /><br />
<table class="HSetting">
<tr>
<td>记忆跨度</td>
<td><input type="number" id="IStep" /></td>
</tr>
<tr>
<td>内容长度</td>
<td><input type="number" id="ILen" /></td>
</tr>
<tr>
<td>只含数字</td>
<td><input type="checkbox" disabled id="INumOnly" checked style="transform: scale(150%);" /></td>
</tr>
</table>
</div>
<div class="HFoot">
<span class="HFLt">|简·陋|系列</span>
</div>
</div>
</body>
</html>