mirror of
https://github.com/cloudreve/frontend.git
synced 2025-12-26 04:02:47 +00:00
100 lines
2.7 KiB
HTML
100 lines
2.7 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="shortcut icon" href="{pwa_small_icon}" sizes="64x64" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,shrink-to-fit=no"
|
|
/>
|
|
<meta name="theme-color" content="" />
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<meta name="description" content="{siteDes}" />
|
|
<title>{siteName}</title>
|
|
<script>
|
|
window.subTitle = "{siteName}";
|
|
</script>
|
|
<style>
|
|
#app-loader {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: #f5f5f5;
|
|
z-index: 9999;
|
|
}
|
|
#app-loader .logo {
|
|
width: 120px;
|
|
height: 120px;
|
|
margin-bottom: 32px;
|
|
background-image: url("{pwa_medium_icon}");
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
opacity: 0;
|
|
transform: scale(0.8);
|
|
animation: fadeIn 0.6s ease-out 0.3s forwards;
|
|
}
|
|
#app-loader .spinner {
|
|
width: 28px;
|
|
height: 28px;
|
|
position: relative;
|
|
opacity: 0;
|
|
transform: scale(0.8);
|
|
animation: fadeIn 0.6s ease-out 0.3s forwards;
|
|
}
|
|
#app-loader .spinner::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: -3px;
|
|
left: -3px;
|
|
width: 100%;
|
|
height: 100%;
|
|
border: 4px solid rgba(0, 0, 0, 0.1);
|
|
border-radius: 50%;
|
|
border-top-color: var(--defaultThemeColor);
|
|
animation: spin 1s ease-in-out infinite;
|
|
}
|
|
@keyframes spin {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
@keyframes fadeIn {
|
|
to {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="app-loader">
|
|
<div class="logo"></div>
|
|
<div class="spinner"></div>
|
|
</div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
<div id="root"></div>
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", function () {
|
|
// Hide loader when the app has loaded
|
|
const appRoot = document.getElementById("root");
|
|
const observer = new MutationObserver(function (mutations) {
|
|
if (appRoot.children.length > 0) {
|
|
document.getElementById("app-loader").style.display = "none";
|
|
observer.disconnect();
|
|
}
|
|
});
|
|
observer.observe(appRoot, { childList: true });
|
|
});
|
|
</script>
|
|
</body>
|
|
{siteScript}
|
|
</html>
|