courchevel-map/index.html

42 lines
1010 B
HTML
Raw Permalink Normal View History

2023-05-23 03:05:46 +02:00
<!DOCTYPE html>
<html>
<style>
body {
overflow-x: hidden;
}
#container {
width: 100%;
height: 100%;
background-image: url("./map.jpg");
background-repeat: no-repeat;
background-size: 100% 100%;
padding: 0px;
}
</style>
<body>
<h1></h1>
<!-- Button -->
<div style="width: 20%; float:left">
<input type="radio" name="level" value="0" checked> Débutant<br>
<input type="radio" name="level" value="1"> Expérimenté<br>
<p id="instructions"></p>
</div>
<div style="width: 80%; float:right" id="container" class="svg-container">
</div>
<script type='text/javascript' src="./node_modules/d3/dist/d3.js"></script>
<script type='text/javascript' src="floyd_warshall.js"></script>
<script type='text/javascript' src="path.js"></script>
<script type='text/javascript' src="path_to_string.js"></script>
<script type='text/javascript' src="app.js"></script>
</body>
</html>