-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
84 lines (75 loc) · 4.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" type="image/png" href="favicon.png"/>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Studying kanji is a breeze on JLPT.se; with simplicity in mind, we offer the definite clean way to study towards the JLPT. Study the kanji needed to crush the JLPT tests. Get better at Japanese today, only at JLPT.se">
<title>JLPT.se - JLPT study made easy! ( ´・ω・)人(・ω・` )</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="jquery.color-2.1.2.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js"></script>
<link rel="stylesheet" href="style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-127203940-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-127203940-1');
</script>
</head>
<body>
<div class="nav">
<a href="index.html">kanji</a>
<a href="vocab.html">vocab</a>
<a href="about.html">about</a>
</div>
<p class="timer"><time>00:00:00</time></p>
<div class="container">
<div class="clearfix">
<p class="kanji"></p>
</div>
<p class="eigo"></p>
<p class="onyomi"></p>
<p class="kunyomi"></p>
<p class="count"></p>
<input class="action" placeholder="input meaning..." type="text"><br>
<p class="oBtn" onclick="options()">options</p>
<div class="options">
<p class="inst">This is a small application meant to help you learn the English meaning of all the basic kanji.</p><br>
<p class="inst">Enter the English meaning in the input field and press enter.</p><br>
<p class="inst">Press "shuffle" to shuffle selected deck.</p><br><hr>
<form class="select" action=" "></form>
<input onclick="difficulty()" id="select" type="radio" name="diff" value="0" checked="checked"> N5
<input onclick="difficulty()" id="select" type="radio" name="diff" value="1"> N4
<input onclick="difficulty()" id="select" type="radio" name="diff" value="2"> N3
<input onclick="difficulty()" id="select" type="radio" name="diff" value="3"> N2
<input onclick="difficulty()" id="select" type="radio" name="diff" value="4"> N1
<input onclick="difficulty()" class="list" id="select" type="radio" name="diff" value="5" disabled=true> LIST
</form><br>
<form class="fonts">
<select name="fonts">
<option value="meiryo">meiryo</option>
<option value="ms gothic">gothic</option>
<option value="ms mincho">mincho</option>
</select>
</form><br>
<p class="oBtn" onclick="addToList()">+list</p><br>
<p class="oBtn" onclick="removeList()">-list</p><br>
<p id="repeat" class="oBtn" onclick="repeatMinus()">-10 steps</p><br>
<p id="repeat" class="oBtn" onclick="repeatPlus()">+10 steps</p><br>
<p id="shuffle" class="oBtn" onclick="shuffle(eigo[n], kanji[n])">shuffle</p><br>
<p id="shuffle" class="oBtn" onclick="showTimer()">show timer</p><br>
<p class="peek">Hover to cheat...</p>
<div class="contact">
<a href="https://www.instagram.com/linus_hej" class="respect">Application written by me, Linus Larsson.</a><br>
<a href="http://www.tanos.co.uk/jlpt/" class="respect">All data gathered by Jonathan Waller at tanos.co.uk!</a><br>
</div>
</div>
</div>
<script src="kanji.js"></script>
<script src="app.js"></script>
</body>
</html>