-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (46 loc) · 1.57 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Mathison V 0.2</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="page">
<div id=buttonsContainer>
<audio id="lecteurAudio" controls tabindex="-1" preload="auto">
<source src="Medias/Madison.mp3" type="audio/mpeg">
Votre navigateur ne supporte pas l'élément audio.
</audio>
<audio id="lecteurSon" controls tabindex="-1" preload="auto">
<source src="Medias/Change.mp3" type="audio/mpeg">
</audio>
<button class="buttons" id="stopButton">Stop</button>
</div>
<div>Appuie sur les touches ↑ ↓ ← → du clavier</div>
<div id=pictureContainer tabindex="0">
<img id=picture src="Medias/LogoMathison.png">
</div>
<div id=pavContainer tabindex="-1">
<table>
<tr>
<td> </td>
<td><img class="keyPad" id="keyPadUp" src="Medias/Up-Y-key.png"></td>
<td> </td>
</tr>
<tr>
<td><img class="keyPad" id="keyPadLeft" src="Medias/Left-Y-key.png"></td>
<td> </td>
<td><img class="keyPad" id="keyPadRight" src="Medias/Right-Y-key.png"></td>
</tr>
<tr>
<td> </td>
<td><img class="keyPad" id="keyPadDown" src="Medias/Down-Y-key.png"></td>
<td> </td>
</tr>
</table>
</div>
</div>
</body>
<script type="text/javascript" src="script.js"></script>
</html>