Files
graph-mesamis/index.html
2025-10-19 09:08:49 +02:00

24 lines
742 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<title>Simulation de graphe d'amis</title>
<script type="module" src="src/network.ts"></script>
<style>
body { font-family: sans-serif; }
#sigma-container { width: 100%; height: 400px; border: 1px solid #ccc; margin-top: 1rem; }
#graph-container canvas {
display: block;
margin: 0 auto; /* si vous voulez le centrer sans perturber Sigma */
}
</style>
</head>
<body>
<h1>Simulation de réseau damitiés</h1>
<input type="file" id="fileInput" accept="application/json" />
<button id="generateGraph">Générer le graphe</button>
<button id="stopSim" disabled>⏸️ Stop</button>
<div id="sigma-container"></div>
</body>
</html>