RENDU FINAL
This commit is contained in:
80
404.html
Normal file
80
404.html
Normal file
@@ -0,0 +1,80 @@
|
||||
<!--AUTHOR Chiara RELEVAT- Nuit de l'info 2018-->
|
||||
<!DOCTYPE html>
|
||||
<!--https:/www.w3schools.com/graphics/game_intro.asp-->
|
||||
<!--https:/www.trex-game.skipser.com-->
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="UTF8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" type="text/css" href="./styles.css" />
|
||||
<title>404 - Game Found !</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!--Jeux principal-->
|
||||
<h1 class="center">Fuyez l'homme en noir ! 404 - Game Found !</h1>
|
||||
<script src="./scores.js">
|
||||
startGame()
|
||||
</script>
|
||||
|
||||
<!--Tableau des scores-->
|
||||
<h3 class="cote">Meilleur score</h3>
|
||||
<script src="./script.js">
|
||||
load()
|
||||
</script>
|
||||
<table class="tab">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<p>1ST</p>
|
||||
</td>
|
||||
<td>
|
||||
<script>
|
||||
document.write(getPremier());
|
||||
</script>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>2ND</p>
|
||||
</td>
|
||||
<td>
|
||||
<script>
|
||||
document.write(getSecond());
|
||||
</script>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>3RD</p>
|
||||
</td>
|
||||
<td>
|
||||
<script>
|
||||
document.write(getTroisieme());
|
||||
</script>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<!--gif homme en noir qui marche-->
|
||||
<img src="./gifs/homme trop swag.gif" alt="homme en noir" height="150" width="150">
|
||||
|
||||
<!--Insertion de l'audio a chaque saut-->
|
||||
<audio id="monAudio"> </audio>
|
||||
<script src="./sons.js"></script>
|
||||
|
||||
<!--bouton evenement-->
|
||||
<br>
|
||||
<button onmousedown="sauter(-0.05)" onmouseup="sauter(0.05)" onclick="playAudio()">SAUTER</audio></button>
|
||||
|
||||
<!--lancer le jeux-->
|
||||
<script>
|
||||
startGame()
|
||||
load()
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
Reference in New Issue
Block a user