-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
100 lines (89 loc) · 4.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
93
94
95
96
97
98
99
100
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml" lang="zh-CN">
<head>
<title>手指记忆-基于刻意练习的五笔输入法训练</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="keywords" content="刻意练习,五笔字根,五笔输入法" />
<meta name="description" content="以刻意练习理论为指导、根据练习者掌握情况动态生成训练内容,优先训练练习者掌握不佳内容的五笔输入法训练系统。" />
<link rel="stylesheet" href="statics/css/main.css" />
<script type="text/javascript" src="statics/js/data.js"></script>
<script type="text/javascript" src="statics/js/main.js"></script>
</head>
<body>
<header>
<br />
<h1 id="title">个人中心</h1>
</header>
<main>
<section id="profile">
<img id="avatar" width="70px" height="70px" />
<br />
<big>欢迎,<span id="name">Werner</span></big>
<br /><br />
<div><button onclick="start();" id="start-button"></button></div>
<br />
<div>训练总时长:<span id="duration"></span></div>
<div>训练总次数:<span id="times"></span>次</div>
<div>当前位于:第<span id="level"></span>关</div>
<br />
<div>
<button onclick="setting();">设置</button>
<button onclick="custom();">自定义练习</button>
<button onclick="logout();">注销</button>
</div>
<br />
<div>关卡概览:</div>
<ul id="list" class="list"></ul>
</section>
<section id="setting">
<label for="name">昵称:</label>
<input type="text" name="name" id="user-name" placeholder="输入你的常用昵称" />
<br /><br />
<label for="qq">QQ:</label>
<input type="text" name="qq" id="user-qq" placeholder="仅用于显示头像" />
<br /><br />
本站所有数据都保存在浏览器中,不会上传任何数据到服务器。<br />
若您删除了浏览器缓存,则可能丢失在本站的数据。<br />
<br />
<button onclick="submit();">确定</button>
</section>
<section id="ground">
<div class="zigen" id="display"></div>
<input type="text" name="name" id="input" autofocus="autofocus" autocomplete="off" />
<br />
<br />
<div>本关进度:<span id="progress"></span></div>
<br />
<div>TOP:<span id="top-error" class="zigen"></span></div>
<br />
<button onclick="openProfile();">返回</button>
</section>
<section id="custom">
<div>已添加的自定义练习:</div>
<ul id="custom-list" class="list"></ul>
<div>
<button onclick="addCustom();">新增</button>
<button onclick="openProfile();">返回</button>
</div>
<br /><br />
<div class="instructions">使用说明:在其他打字网站,如<a href="https://dazi.kukuw.com/" target="_balnk">酷酷网</a>,练习输入一篇文章后,可以把输错的汉字新建为自定义练习进行专门地练习。自定义练习不保存练习进度,每次点击“练习”都会重新开始,也不计入练习总次数和总时长。</div>
</section>
<section id="add-custom">
名称:<input id="new-name" placeholder="起个有意义的名字便于以后查找" type="text" style="width: 200px;">
<br /><br />
<textarea id="new-characters" placeholder="将想要练习的文字复制粘贴到这里,有空格或换行也没关系" cols="60" rows="15"></textarea>
<br /><br />
<div>
<button onclick="newCustom();">确定</button>
<button onclick="custom();">取消</button>
</div>
</section>
</main>
<footer>
<a href="https://github.com/Werneror/FingerMemory" target="_blank">源代码</a>
<a href="song.html" target="_blank">字根歌</a>
<a href="https://blog.werner.wiki/" target="_blank">若水斋</a>
</footer>
</body>
</html>