feat(splash): 增加了启动页

This commit is contained in:
李东云
2022-02-22 22:10:18 +08:00
parent e8b1e45c81
commit 1e873ea7be
23 changed files with 347 additions and 83 deletions

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

@@ -0,0 +1,7 @@
function removeSplashFromWeb() {
const elem = document.getElementById("splash");
if (elem) {
elem.remove();
}
document.body.style.background = "transparent";
}