-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
160 lines (150 loc) · 5.26 KB
/
Copy pathindex.html
File metadata and controls
160 lines (150 loc) · 5.26 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Apprendre l'alphabet arabe !</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Amiri&display=swap" rel="stylesheet">
</head>
<body>
<h1>Apprendre l'alphabet arabe !</h1>
<p>Cette web-application a pour but de vous faire apprendre l'alphabet arabe. Elle fonctionne comme un jeu, c'est à dire qu'il va vous falloir passer des niveaux les uns après les autres pour débloquer de nouvelles lettres à apprendre.</p>
<p>L'alphabet arabe est composé de 28 lettres. </p>
<p>Pour passer au niveau suivant, il vous faut atteindre au moins trois étoiles, c'est-à-dire 28 réponses justes sur 32 questions.</p>
<h1>Niveaux</h1>
<div id="levels-container"></div>
<div class="modal" id='game-area'>
<div class="modal__header">
<button icon="icon" onclick="toggleGameAreaModal()">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<path d="M12 11.293l10.293-10.293.707.707-10.293 10.293 10.293 10.293-.707.707-10.293-10.293-10.293 10.293-.707-.707 10.293-10.293-10.293-10.293.707-.707 10.293 10.293z">
</path>
</svg>
</button>
<div id="progress-bar"></div>
</div>
<div class="modal__content">
<canvas id="myCanvas" dir="rtl" width="400" height="400" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.
</canvas>
<div id='canvas-data'></div>
</div>
<div class="modal__footer">
<div id="button-area"></div>
</div>
</div>
<h2>Options avancées</h2>
<button onclick="clearProgressAndReset()" title="settings" class="icon-button" id="btnSettings">
<span>Remettre la progression à zéro</span>
</button>
<h1>Lexique</h1>
<p>J'ai choisi de construire mon apprentissage autour des mots suivants :</p>
<table>
<thead>
<tr>
<td>Mot de référence (transcrit)</td>
<td>Mot (alphabet arabe)</td>
<td>Sens</td>
</tr>
</thead>
<tr>
<td>7abibi</td>
<td class='arabic'>ح ب ي ب ي</td>
<td>Habibi (mon chéri)</td>
</tr>
<tr>
<td>khiar</td>
<td class='arabic'>خ ي ار </td>
<td>concombre</td>
</tr>
<tr>
<td>tabboule</td>
<td class='arabic'>ت ب و ل ة</td>
<td>taboulé</td>
</tr>
<tr>
<td>toum</td>
<td class='arabic'>ث و م</td>
<td>ail</td>
</tr>
<tr>
<td>djej</td>
<td class='arabic'>د ج ا ج</td>
<td>poulet</td>
</tr>
<tr>
<td>dhara</td>
<td class='arabic'>ذ ر ة</td>
<td>maïs</td>
</tr>
<tr>
<td>roz</td>
<td class='arabic'>ر ز</td>
<td>riz</td>
</tr>
<tr>
<td>shams</td>
<td class='arabic'>ش م س</td>
<td>soleil</td>
</tr>
<tr>
<td>souss asfar</td>
<td class='arabic'>ص و ص أ ص ف ر</td>
<td>poussin jaune</td>
</tr>
<tr>
<td>daou</td>
<td class='arabic'>ض و </td>
<td>lumière</td>
</tr>
<tr>
<td>batata</td>
<td class='arabic'>ب ط ا ط ا</td>
<td>pomme de terre</td>
</tr>
<tr>
<td>zol</td>
<td class='arabic'>ظ ل</td>
<td>ombre</td>
</tr>
<tr>
<td>Aïda</td>
<td class='arabic'>ع ي د ا</td>
<td>Aïda</td>
</tr>
<tr>
<td>ghasil alyadin</td>
<td class='arabic'>غ س ل ا ل ي د ي ن </td>
<td>laver les mains</td>
</tr>
<tr>
<td>qamar</td>
<td class='arabic'>ق م ر</td>
<td>lune</td>
</tr>
<tr>
<td>kalb </td>
<td class='arabic'>ك ل ب </td>
<td>chien</td>
</tr>
<tr>
<td>nur </td>
<td class='arabic'>ن و ر </td>
<td>lumière</td>
</tr>
<tr>
<td>haida </td>
<td class='arabic'>ه ذ ا</td>
<td>cela</td>
</tr>
</table>
<p>Pour plus de détails sur l'apprentissage de l'alphabet arabe, je vous propose de vous référer à la page suivante : <a href="https://jeretiens.net/lalphabet-arabe-les-28-lettres">https://jeretiens.net/lalphabet-arabe-les-28-lettres</a>.</p>
<script src="script.js"></script>
<script src="https://luis.leiva.name/jsketch/js/dist/sketchable.full.min.js"></script>
<script>
setupLevels()
</script>
</body>