Fade the map in after it is done loading

This commit is contained in:
2024-04-22 12:09:50 -07:00
parent b443b37a11
commit c23d9be954
3 changed files with 15 additions and 0 deletions

View File

@@ -143,6 +143,10 @@
</fieldset>
</div>
<div class="map-placeholder">
Loading...
</div>
<object type="image/svg+xml" data="map.svg"></object>
<div id="status">

View File

@@ -16,6 +16,11 @@ svg, object {
height: 100%;
}
object {
opacity: 0;
transition: opacity 0.25s;
}
svg image {
image-rendering: pixelated;
}