-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
54 lines (54 loc) · 1.65 KB
/
index.htm
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="hanziben.css" />
<script src="data.js"></script>
<script src="hanziben.js"></script>
<style type="text/css" media="print">
.hideOnPrint {
display: none;
}
</style>
</head>
<body>
<h2 class="title">
Dictée Hanziben
</h2>
<div id="quizzSettings" class="hideOnPrint">
<table class="menu"><tr><td>
Leçons: <a id="checkAllNoneLink" href="">Toutes / aucunes</a><br />
<ul id="lessonsDiv"></ul>
Nombre de mots: <select id="quizzSizeText">
<option value="0">Tous</option>
<option value="10">10</option>
<option value="20">20</option>
<option value="30">30</option>
<option value="40">40</option>
<option value="50">50</option>
<option value="100">100</option>
</select><br/>
</td><td>
<b>Quoi de neuf?</b>
<ul>
<li>Il est maintenant possible d'afficher les caractères chinois pour imprimer la solution!</li>
<li>Pour apprendre les mots / prononciation, je me suis fait un <a href="https://www.memrise.com/course/1416021/le-chinois-contemporain-volume-1/">cours sur Memrise</a>.</li>
</ul>
</td></tr></table>
<input type="button" value="Générer une dictée!" id="generateButton" /><br/>
<hr />
Afficher les pinyins: <input type="checkbox" id="showPinyin" checked="checked" /><br/>
Afficher le chinois: <input type="checkbox" id="showCharacters" /><br/>
<hr />
</div>
<div id="quizz">
</div>
<div class="hideOnPrint">
<div id="afterQuizz">
<hr />
<input type="button" value="Imprimer" onclick="print();" />
</div>
</div>
</body>
</html>