index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/index.html | 4 | ||||
-rw-r--r-- | public/style.css | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/public/index.html b/public/index.html index 68acea4..a60db29 100644 --- a/public/index.html +++ b/public/index.html @@ -143,6 +143,10 @@ </fieldset> </div> + <div class="map-placeholder"> + Loading... + </div> + <object type="image/svg+xml" data="map.svg"></object> <div id="status"> diff --git a/public/style.css b/public/style.css index 00d9d74..a8fa57a 100644 --- a/public/style.css +++ b/public/style.css @@ -16,6 +16,11 @@ svg, object { height: 100%; } +object { + opacity: 0; + transition: opacity 0.25s; +} + svg image { image-rendering: pixelated; } |