-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (33 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Water</title>
<link rel="stylesheet" href="res/css/main.css">
<script type="module" src="src/js/main.js"></script>
</head>
<body>
<div id="grid">
<canvas id="canvas"></canvas>
<div id="toolbar">
<p>Water Height</p>
<label for="height-input">H</label>
<input type="range" id="height-input" min="0.5" max="1.5" step="0.05" value="1" autocomplete="off">
<div>
<label for="random-waves-input">Random Waves</label>
<input type="radio" name="mode" id="random-waves-input" autocomplete="off" checked>
</div>
<div>
<label for="interact-with-water-input">Interact with Water</label>
<input type="radio" name="mode" id="interact-with-water-input" autocomplete="off">
</div>
<p>Load Texture</p>
<input type="file" id="texture-input" accept="image/jpeg" autocomplete="off">
<button type="button" id="save-image-button">Save Image</button>
</div>
<div id="about">
<p>Course Project 2018-2019 Nikita Zaytsev</p>
</div>
</div>
</body>
</html>