-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/main.css">
<title>Stream-SSJ</title>
</head>
<body>
<main>
<div id="throttles-container" class="canvas-wrapper">
<span>Connect Throttle and move it around</span>
<canvas id="throttle1" width="30" height="300"></canvas>
<canvas id="throttle2" width="30" height="300"></canvas>
</div>
<div id="stick-container" class="canvas-wrapper">
<span>Connect Joystick and move it around</span>
<canvas id="stick" width="300" height="300"></canvas>
</div>
<div id="rudder-container" class="canvas-wrapper">
<span>Connect Rudder and move it around</span>
<canvas id="rudder" width="300" height="30"></canvas>
</div>
<div id="rotary-container" class="canvas-wrapper">
<span>Connect Rotary and move it around</span>
<canvas id="rotary" width="300" height="300"></canvas>
</div>
</main>
<script src="./js/core.js" type="module"></script>
</body>
</html>