forked from eastonmeth/legacy-led-matrix-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 3.32 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
<!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="app.css">
<title>LED Matrix Generator</title>
</head>
<body>
<h1>LED Matrix Generator</h1>
<div id="grid" class="grid"></div>
<p id="errorMessage" class="errorMessage"></p>
<form id="submitForm" action="#">
<textarea id="inputBox" class="inputBox" cols="100" rows="12" wrap="soft">["000000","000000","000000","000000","000000","DD1012","DEA090","D10000","C80000","C70000","BF3020","000000","000000","000000","000000","000000","000000","000000","D01000","C40010","BA5080","DE60E0","E150C0","EA00A0","F30080","F60050","FB3000","DB8018","000000","000000","000000","000000","000000","000000","000000","000000","78441E","7C4928","865132","DAA488","E2B497","DAB195","321280","CCAB97","000000","000000","000000","000000","000000","000000","C1AF94","C2B69E","CBBEA0","302E2C","D5C2A2","D8C8A7","D7C4A6","D7C09D","735B34","D9C39B","5C523E","000000","000000","000000","000000","000000","000000","564526","DBC7A6","7E653C","DAC4A3","D9C6A8","D9C6A6","D4C1A1","CDBDA8","201811","CBBC9D","CBB796","BEAE8D","000000","000000","000000","1C1816","434035","302E2B","231AD0","CFBC9B","CEBB9B","D4C1A1","DAC7A6","C7B18D","5A441F","4B371B","000000","000000","000000","000000","000000","000000","000000","000000","C7B597","D6C3A2","D0BD9B","CBB794","C4B08F","C7B8A2","C7BA9C","BFB195","000000","000000","000000","000000","000000","000000","000000","000000","4325B3","D4F090","C64020","B1801E","7F2A9E","CD7000","D1101B","000000","000000","000000","000000","000000","000000","000000","B71C22","FB2000","F30080","7D21A4","E66018","EB0070","6329B3","AD902F","C91110","D41715","000000","000000","000000","000000","000000","DAB010","FD1030","F30090","D2701F","4F28BC","522BD6","5D30DC","7823A4","EA0080","F50040","F74010","D6111C","000000","000000","000000","000000","CBAE8B","E8B39B","F10013","7C21A6","F0D093","6530CD","512BCD","D6C752","57207F","CB802C","E2B797","D3A98E","000000","000000","000000","000000","CBB796","CAC9A5","DCA0A6","4521A9","542F8C","522DCA","5529DA","6037B2","562DC8","E69F89","D6C5A7","CBB79A","000000","000000","000000","000000","D0BC9D","CAB596","5B2CDA","6033E7","5C31E2","532DCF","4C28C0","532FC7","4D2ABD","4521A6","C6B692","D0BE9A","000000","000000","000000","000000","000000","000000","4222AB","4221AD","4223AE","000000","000000","522ACC","532CD7","512CD5","000000","000000","000000","000000","000000","000000","000000","5E553F","705568","6B505C","583D48","000000","000000","62484F","695056","634A4E","4D3D22","000000","000000","000000","000000","000000","3E2F16","4A3613","543C16","5A431A","614620","000000","000000","543C19","5B421A","5F4721","685021","61533C","000000","000000"]</textarea>
<div class="settings">
<div class="size"></div>
<label class="sizeLabel" for="x-axis">Size:</label>
<input id="x-axis" class="sizeBox" type="text" value="16"> x <input id="y-axis" class="sizeBox" type="text" value="16">
<label class="snakeLabel" for="snakeBox">Snake mode:</label>
<input id="snakeBox" class="snakeBox" type="checkbox" checked>
</div>
<button class="submit">SUBMIT</button>
</form>
<script src="app.js"></script>
</body>
</html>