2019-12-05 21:47:28 +01:00
|
|
|
<!DOCTYPE html>
|
2019-12-05 23:49:19 +01:00
|
|
|
<!--https:/www.w3schools.com/graphics/game_intro.asp-->
|
|
|
|
<!--https:/www.trex-game.skipser.com-->
|
|
|
|
|
2019-12-05 21:47:28 +01:00
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
2019-12-05 23:49:19 +01:00
|
|
|
<meta charset="UTF8" />
|
2019-12-05 21:47:28 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<style>
|
|
|
|
canvas {
|
|
|
|
border: 1px solid #d3d3d3;
|
|
|
|
background-color: #f1f1f1;
|
|
|
|
}
|
2019-12-05 22:15:59 +01:00
|
|
|
|
|
|
|
.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2019-12-05 23:49:19 +01:00
|
|
|
|
|
|
|
button {
|
|
|
|
margin-top: +300px;
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
2019-12-05 21:47:28 +01:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
2019-12-05 23:49:19 +01:00
|
|
|
<body onload="startGame()" onload="load()">
|
2019-12-05 22:15:59 +01:00
|
|
|
<h1 class="center">Fuyez l'homme en noir !</h1>
|
2019-12-05 23:49:19 +01:00
|
|
|
<script src="./scores.js"></script>
|
2019-12-05 21:51:21 +01:00
|
|
|
<script src="./script.js"></script>
|
2019-12-05 22:15:59 +01:00
|
|
|
|
2019-12-05 21:47:28 +01:00
|
|
|
<br>
|
2019-12-05 23:49:19 +01:00
|
|
|
<button onmousedown="sauter(-0.5)" onmouseup="sauter(0.05)">SAUTER</button>
|
2019-12-05 21:47:28 +01:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|