forked from sunillarsson/sunillarsson.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (50 loc) · 2.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<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>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="clearfix">
<p class="kanji"></p>
</div>
<p class="eigo"></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
</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 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 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="app.js"></script>
</body>
</html>