forked from juanchel/conjugator
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
64 lines (59 loc) · 2.91 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
<html>
<head>
<title>Conjugator</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script src="rules.js" charset="utf-8"></script>
<script src="vocab.js" charset="utf-8"></script>
<script src="conjugate.js" charset="utf-8"></script>
<script src="kana-input.js" charset="utf-8"></script>
</head>
<body>
<div id="title"><div id="title-text">日本語 Conjugation Game</div></div>
<div id="start-screen">
<div id="play" class="btn">Start</div>
<div id="options" class="btn">Options</div>
<div id="explan">
<p>
This game <em>may</em> contain inaccuracies and is not intended to be used for any purpose
other than for entertainment. It may also contain conjugations that are not actively used
in the Japanese language. Allow the purpose of this exercise to be to correctly conjugate
the <em>type</em> rather than the word itself.
</p>
</div>
</div>
<div id="main">
<div id="info">
<div id="question"><span id="question-word"></span></div>
<div id="mods">
<div id="mod-clear" style="clear:both"></div>
</div>
<div id="def"><span id="part" class="lb-text"></span><span id="meaning"></span></div>
<div id="scoreboard"><span id="score">0</span><br/><span class="lb-text">x</span><span id="mult">1</span></div>
</div>
<div id="time-bar"><textarea id="answer" maxlength="25" data-kana-input></textarea></div>
<div id="well"></div>
</div>
<div id="option-menu">
<h2>Verbs</h2>
<div id="verb-options">
</div>
<div class="menu-sec"></div>
<h2>Verb Conjugations</h2>
<div id="conjugation-options"></div>
<div class="menu-sec"></div>
<h2>Adjectives</h2>
<div id="adjective-options"></div>
<div class="menu-sec"></div>
<h2>Kanji</h2>
<div id="kanji-options"></div>
<div class="menu-sec"></div>
<div id="optplay" class="btn">Start</div>
</div>
<a id="ribbon" href="https://github.com/juanchel/conjugator">
<img src="https://camo.githubusercontent.com/c6625ac1f3ee0a12250227cf83ce904423abf351/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f6c6566745f677261795f3664366436642e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_left_gray_6d6d6d.png">
</a>
</body>
</html>