talas-group/11_RECHERCHE_&_LAB/mockup_jeu_ux/index.html

24 lines
879 B
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Moteur 2D Top-Down - V2 Tilemap & Caméra</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="game-container">
<canvas id="gameCanvas" width="800" height="600"></canvas>
<!-- Modale de documentation cachée par défaut -->
<div id="ui-modal" class="hidden">
<div class="modal-content">
<h2>Documentation</h2>
<p>Voici la documentation. Vous venez d'interagir avec un Point d'Intérêt (POI). Vous pouvez lire ces informations avant de reprendre votre partie.</p>
<button id="close-modal-btn">Fermer</button>
</div>
</div>
</div>
<script src="game.js"></script>
</body>
</html>