diff options
| author | Brian Cully <bjc@spork.org> | 2025-12-23 10:17:00 -0500 |
|---|---|---|
| committer | Brian Cully <bjc@spork.org> | 2025-12-23 10:26:17 -0500 |
| commit | 55981ed9db09d029644725bfe64f6ba390ec0621 (patch) | |
| tree | fefb38c7b57b9915303facecaf5178e9c3a1c425 /site/index.html | |
| parent | 89426c8a02210daf19cd6b9230e59a0d1b2fe006 (diff) | |
| download | automathon-55981ed9db09d029644725bfe64f6ba390ec0621.tar.gz automathon-55981ed9db09d029644725bfe64f6ba390ec0621.zip | |
html: use svg buttons rather than text
Diffstat (limited to 'site/index.html')
| -rw-r--r-- | site/index.html | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/site/index.html b/site/index.html index 702bc96..67ce13d 100644 --- a/site/index.html +++ b/site/index.html @@ -17,8 +17,27 @@ <div class='controls'> <!-- <button id='bench'>bench</button> --> - <button id='tick'>tick</button> - <button id='blinken'>blinken</button> + <button id='tick'> + <svg version='1.1' width='30' height='20' viewbox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'> + <title>tick</title> + <g class='step' stroke='black' stroke-width='2' fill='red'> + <polyline points='0 0 0 100 55 50 0 0'/> + <rect x='60' y='0' width='30' height='100'/> + </g> + </svg> + </button> + <button id='run' class='halten'> + <svg version='1.1' width='30' height='20' viewbox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'> + <title>blinken</title> + <g class='play' stroke='black' stroke-width='2' fill='red'> + <polyline points='0 0 0 100 100 50 0 0'/> + </g> + <g class='pause' stroke='black' stroke-width='2' fill='red'> + <rect x='0' y='0' width='40' height='100'/> + <rect x='60' y='0' width='40' height='100'/> + </g> + </svg> + </button> <label for='tick-rate-select'>tps:</label> <select id='tick-rate-select'> <option>5</option> @@ -29,7 +48,7 @@ <option>60</option> </select> </div> <!-- controls --> - <label for='fps'>fps: </label><span id='fps'>0</span> + <label for='fps'>fps: </label><span id='fps'>n/a</span> </section> <!-- arena --> <section id='robview'> |
