Init
This commit is contained in:
52
frontend/index.html
Normal file
52
frontend/index.html
Normal file
@@ -0,0 +1,52 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user