mirror of
https://github.com/ParkerTenBroeck/automata.git
synced 2026-06-07 05:28:45 -04:00
Deploy
This commit is contained in:
parent
171c717b1e
commit
9fd690bc84
4 changed files with 1092 additions and 12 deletions
Binary file not shown.
1068
docs/index-VVM5BCNX.js
Normal file
1068
docs/index-VVM5BCNX.js
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
<link rel="icon" type="image/x-icon" href="icon.jpg">
|
<link rel="icon" type="image/x-icon" href="icon.jpg">
|
||||||
<link href="style.css" rel="stylesheet">
|
<link href="style.css" rel="stylesheet">
|
||||||
<script src="./index-NX7QXB3A.js" type="module" crossorigin></script></head>
|
<script src="./index-VVM5BCNX.js" type="module" crossorigin></script></head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="centered" id="center_text">
|
<div class="centered" id="center_text">
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
<section class="flexCol gap marginTop">
|
<section class="flexCol gap marginTop">
|
||||||
<div class="flexCenter sidePadding gap">
|
<div class="flexCenter sidePadding gap">
|
||||||
<button id="themeToggle" class="btn btn-grey" title="Toggle light/dark">
|
<button id="themeToggle" class="btn btn-blue" title="Toggle light/dark">
|
||||||
🌙 Dark
|
🌙 Dark
|
||||||
</button>
|
</button>
|
||||||
<button class="btn btm-grey" style="position: relative" id="shareBtn" type="button">
|
<button class="btn btm-grey" style="position: relative" id="shareBtn" type="button">
|
||||||
|
|
@ -46,6 +46,14 @@
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="hSplit styleOnly" title="Drag to resize canvas height"></div>
|
<div class="hSplit styleOnly" title="Drag to resize canvas height"></div>
|
||||||
|
|
||||||
|
<div class="flexCenter sidePadding" style="font-size: calc(16px);font-weight: bold;color: var(--fg-1)">
|
||||||
|
<span style="margin-right: 0.5em;">Status: </span><span style="color: var(--fg-2)" id="simulationStatus">N/A</span>
|
||||||
|
</div>
|
||||||
|
<div class="flexCenter sidePadding">
|
||||||
|
<input id="machineInput" type="text" class="test-input" placeholder="Enter machine input…" />
|
||||||
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
@ -53,7 +61,7 @@
|
||||||
|
|
||||||
<div class="flexCol">
|
<div class="flexCol">
|
||||||
<div class="controls" style="background: var(--bg-0)">
|
<div class="controls" style="background: var(--bg-0)">
|
||||||
<button id="togglePhysics" class="btn btn-toggle active" title="Toggle physics layout">
|
<button id="togglePhysics" class="btn btn-red btn-toggle active" title="Toggle physics layout">
|
||||||
Physics: ON
|
Physics: ON
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
|
|
@ -63,21 +71,25 @@
|
||||||
|
|
||||||
<span class="spacer"></span>
|
<span class="spacer"></span>
|
||||||
|
|
||||||
<button id="resetSim" class="btn btn-blue" title="Stop and reset simulation">
|
<button id="reloadSim" class="btn btn-blue" title="Stop and Reload simulation">
|
||||||
⟲ Reset
|
⟲ Reload
|
||||||
</button>
|
</button>
|
||||||
<button id="playPause" class="btn btn-green" title="Run / pause simulation">
|
<button id="clearSim" class="btn btn-red" title="Stop and Clear simulation">
|
||||||
▶ Play
|
✖ Clear
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button id="step" class="btn btn-grey" title="Advance one step">
|
|
||||||
Step
|
<button id="stepSim" class="btn btn-yellow" title="Advance one step">
|
||||||
|
⏭ Step
|
||||||
|
</button>
|
||||||
|
<button id="playPauseSim" class="btn btn-green" title="Run / pause simulation">
|
||||||
|
▶ Play
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<label class="speed">
|
<label class="speed">
|
||||||
Speed
|
Speed
|
||||||
<input id="speed" type="range" min="1" max="60" value="10" />
|
<input id="speedSim" type="range" min="1" max="60" value="1" />
|
||||||
<span id="speedLabel">10x</span>
|
<span id="speedSimLabel">10x</span>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="hSplit styleOnly" title="Drag to resize canvas height"></div>
|
<div class="hSplit styleOnly" title="Drag to resize canvas height"></div>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue