light_maymays/frontend/index.html
2021-08-28 12:14:13 +02:00

52 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="dist/main.css">
<title>Document</title>
</head>
<body>
<div class="preview">
<canvas id="threejs-preview"></canvas>
</div>
<div class="timeline">
<main>
<h1>DMX AYAYA</h1>
<p>
<label for="ch1">Channel 1 (pan)</label>
<input id="ch1" type="number" min="0" max="255" value="0" />
</p>
<p>
<label for="ch2">Channel 2 (tilt)</label>
<input id="ch2" type="number" min="0" max="255" value="0" />
</p>
<p>
<label for="ch3">Channel 3 (dimmer / strobe)</label>
<input id="ch3" type="number" min="0" max="255" value="0" />
</p>
<p>
<label for="rgb">Channel 4-6 (RGB)</label>
<input id="rgb" type="color" />
</p>
<p>
<label for="ch7">Channel 7 (W)</label>
<input id="ch7" type="number" min="0" max="255" value="0" />
</p>
<p>
<label for="ch8">Channel 8 (pan/tilt speed)</label>
<input id="ch8" type="number" min="0" max="255" value="0" />
</p>
<p>
<label for="ch9">Channel 9 (reset)</label>
<input id="ch9" type="number" min="0" max="255" value="0" />
</p>
</main>
</div>
<script src="./dist/main.js"></script>
</body>
</html>