forked from daleharvey/pacman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (84 loc) · 2.62 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Pac-Touche</title>
<link rel="icon" href="pg/img/PACTOUCHE2BLANC.ico" />
<link rel="stylesheet" type="text/css" href="ok.css" />
</head>
<div class="navbar">
<a href="pg/home.html">
<img src="pg/img/logo.png" alt="Logo" class="logo" />
</a>
</div>
<hr />
<body>
<div id="shim">shim for font face</div>
<div id="pacman"></div>
<div id="popup" class="popup">
<h3 id="question">Question: How many points do you want to gain?</h3>
<hr />
<br />
<button id="R1" onclick="selectResponse(this)">10 Points</button>
<button id="R2" onclick="selectResponse(this)">20 Points</button>
<button id="R3" onclick="selectResponse(this)">30 Points</button>
<div id="explanationDIV">
<h2 id="explanationH" ></h2>
<p id="explanationP"></p>
<button id="" onclick="closePopup()">Fermer</button>
</div>
</div>
<div id="popupEnd" class="popupEnd">
<p id="points">Vos points : 600</p>
<hr />
<br />
<button onclick="popupButtonReplay()">Rejouer</button>
<button onclick="popupButtonBack()">Accueil</button>
</div>
<script src="question.js"></script>
<script src="pacman.js"></script>
<script src="modernizr-1.5.min.js"></script>
<script>
var el = document.getElementById("pacman");
if (
Modernizr.canvas &&
Modernizr.localstorage &&
Modernizr.audio &&
(Modernizr.audio.ogg || Modernizr.audio.mp3)
) {
window.setTimeout(function () {
PACMAN.init(el, "./");
}, 0);
} else {
el.innerHTML =
"Sorry, needs a decent browser<br /><small>" +
"(firefox 3.6+, Chrome 4+, Opera 10+ and Safari 4+)</small>";
}
</script>
</body>
<footer class="footer">
<hr />
<div class="footer-content">
<div class="footer-section">
<a href="pg/home.html">Accueil</a>
<a href="https://www.service-public.fr/cmi">Dénoncer une violence</a>
</div>
<div class="footer-section">
<a href="pg/home.html"
><img src="pg/img/mini-logo.png" alt="Logo" class="footer-logo" />
</a>
</div>
<div class="footer-section">
<a href="#" class="social-link"
><img src="pg/img/X.png" class="icon"
/></a>
<a href="#" class="social-link"
><img src="pg/img/insta.png" class="icon"
/></a>
<a href="#" class="social-link"
><img src="pg/img/tiktok.png" class="icon"
/></a>
</div>
</div>
</footer>
</html>