-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcarte.html
More file actions
46 lines (41 loc) · 1.89 KB
/
carte.html
File metadata and controls
46 lines (41 loc) · 1.89 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
<!DOCTYPE html>
<html>
<head>
<title>Carte d'arithmépique</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="js/commun.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/sprintf/1.0.3/sprintf.min.js"></script>
<script type="text/javascript" src="js/zebra_dialog.js"></script>
<script src="js/scriptsScenes.js"></script>
<script src="js/carte.js"></script>
<style>
@import "css/zebra/flat/zebra_dialog.css";
@import "css/carte.css";
</style>
</head>
<body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-66891074-1', 'auto');
ga('send', 'pageview');
</script>
<div id="carte">
<div class="nb-etoiles-total"></div>
<img src="img/carte.png" alt="carte" width="800" height="1600"/>
</div>
<div id="aide">
<h2>Comment jouer : la carte</h2>
<p>Pour entrer dans un niveau, clique sur un jeton vert qui clignotte
<img class="jeton-aide" src="img/icones-carte/scene-actif.gif"/>.</p>
<p>Si tu réussis un niveau, tu pourras ensuite entrer dans le niveau
suivant.</p>
<p>Si une barrière te bloque, tu devras gagner plus d'étoiles
<img src="img/icones-carte/icone_etoile_gagnee.png"/> pour l'ouvrir.</p>
</div>
</body>
</html>