mirror of
https://github.com/ParkerTenBroeck/automata.git
synced 2026-06-06 21:24:06 -04:00
added web UI
This commit is contained in:
parent
48f0c6eed8
commit
f1b8c08e8f
15 changed files with 1114 additions and 78 deletions
45
web/root/index.html
Normal file
45
web/root/index.html
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<title>Automata</title>
|
||||
<link href="editor.css" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="centered" id="center_text">
|
||||
<p style="font-size:16px">
|
||||
Loading…
|
||||
</p>
|
||||
<div class="lds-dual-ring"></div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="app" style="display:none" id="app">
|
||||
<section class="canvasPane" id="canvasPane">
|
||||
<canvas id="canvas"></canvas>
|
||||
</section>
|
||||
|
||||
<div class="hSplit" id="hSplit" title="Drag to resize canvas height"></div>
|
||||
|
||||
<section class="bottomPane" id="bottomPane">
|
||||
|
||||
<main class="editorPane">
|
||||
<div id="editor"></div>
|
||||
</main>
|
||||
<div class="vSplit" id="vSplit" title="Drag to resize terminal/editor width"></div>
|
||||
|
||||
<div class="pane terminalPane">
|
||||
<pre id="terminal" class="terminal"></pre>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
|
||||
<script type="module" src="index.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue