index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
author | Catalin Mititiuc <webdevcat@proton.me> | 2024-06-27 12:48:06 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-06-27 12:48:06 -0700 |
commit | c148f4a4f329decec4602a48a8a71a62b429bfb4 (patch) | |
tree | 5dc552f1bfe34a4369999753b9217d88a10c61e2 /public/index.html | |
parent | 9c0645b481224bcc777cac58eb2c7ea1592e58e1 (diff) |
WIP: render radial coord hexes/maps
Diffstat (limited to 'public/index.html')
-rw-r--r-- | public/index.html | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/public/index.html b/public/index.html index 14410e9..4d32ce6 100644 --- a/public/index.html +++ b/public/index.html @@ -103,6 +103,21 @@ <input type="checkbox" data-allegiance="attacker"/> </div> + <div class="select-elevation"> + <button>🡅</button> + <input type="radio" id="select-elevation-3" name="select-elevation" value="3" /> + <label for="select-elevation-3">3</label> + <input type="radio" id="select-elevation-2" name="select-elevation" value="2" /> + <label for="select-elevation-2">2</label> + <input type="radio" id="select-elevation-1" name="select-elevation" value="1" /> + <label for="select-elevation-1">1</label> + <input type="radio" id="select-elevation-0" name="select-elevation" value="0" checked /> + <label for="select-elevation-0">0</label> + <input type="radio" id="select-elevation-basement" name="select-elevation" value="-1" /> + <label for="select-elevation-basement">-1</label> + <button>🡇</button> + </div> + <div id="dice"> <button type="button" id="roll-dice">Roll</button> <div class="die"> @@ -227,10 +242,6 @@ <label> Load scenario: <select> - <option value="map4">Test</option> - <option value="contour-lines">Contour Lines</option> - <option value="pendle">Pendle</option> - <option value="10-simplex_t03">10-simplex family polytope graph, in A10 Coxeter plane</option> </select> </label> </p> |