-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.26 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Projet Hydrice</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section style="position: fixed; background: white; z-index: 2">
<label>
Temperature opacity
<input id="cursor" type="range" min="O" max="1" step="0.1" value="0" />
</label>
<label>
Humidity opacity
<input id="humidityCursor" type="range" min="O" max="1" step="0.1" value="0" />
</label>
</section>
<section style="position: relative">
<canvas id="mapCanvas" width="2048" height="2048" style="position: absolute">
Désolé, votre navigateur ne prend pas en charge <canvas>.
</canvas>
<canvas id="temperatureCanvas" width="2048" height="2048" style="position: absolute; opacity: 0">
Désolé, votre navigateur ne prend pas en charge <canvas>.
</canvas>
<canvas id="humidityCanvas" width="2048" height="2048" style="position: absolute; opacity: 0">
Désolé, votre navigateur ne prend pas en charge <canvas>.
</canvas>
</section>
<script src="scripts/utils/color.js"></script>
<script src="scripts/map/terrain.js"></script>
<script src="scripts/map/index.js"></script>
<script src="main.js"></script>
</body>
</html>