Added startup splash screen (android only)

This commit is contained in:
2023-02-22 11:38:30 +01:00
parent 3448533894
commit 2c818efce6
36 changed files with 183 additions and 384 deletions

5
web/splash/splash.js Normal file
View File

@ -0,0 +1,5 @@
function removeSplashFromWeb() {
document.getElementById("splash")?.remove();
document.getElementById("splash-branding")?.remove();
document.body.style.background = "transparent";
}