-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
74e6e38
commit 2be0abc
Showing
1 changed file
with
95 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,69 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/png" href="/apple-touch-icon.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta name="mobile-web-app-capable" content="yes" /> | ||
<meta name="apple-mobile-web-app-title" content="NEZHA" /> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="default" /> | ||
<meta name="theme-color" content="#242424" /> | ||
<title>NEZHA</title> | ||
<script> | ||
// 在页面渲染前就执行主题初始化 | ||
try { | ||
const storageKey = "vite-ui-theme"; | ||
let theme = localStorage.getItem(storageKey); | ||
if (theme === "system" || !theme) { | ||
theme = window.matchMedia("(prefers-color-scheme: dark)").matches | ||
? "dark" | ||
: "light"; | ||
} | ||
document.documentElement.classList.add(theme); | ||
} catch (e) { | ||
document.documentElement.classList.add("light"); | ||
} | ||
</script> | ||
<style> | ||
/* Prevent FOUC in Safari */ | ||
html:not(.dark):not(.light) * { | ||
visibility: hidden; | ||
} | ||
|
||
:root { | ||
color-scheme: light; | ||
--bg: #ffffff; | ||
} | ||
|
||
html.dark { | ||
color-scheme: dark; | ||
--bg: #242424; | ||
} | ||
|
||
html.light { | ||
color-scheme: light; | ||
--bg: #ffffff; | ||
} | ||
|
||
html { | ||
background-color: var(--bg) !important; | ||
} | ||
|
||
body { | ||
background-color: var(--bg) !important; | ||
} | ||
|
||
#root { | ||
background-color: var(--bg) !important; | ||
visibility: hidden; | ||
} | ||
|
||
#root.loaded { | ||
visibility: visible; | ||
animation: fadein 0.2s; | ||
} | ||
|
||
@keyframes fadein { | ||
from { | ||
opacity: 0; | ||
} | ||
to { | ||
opacity: 1; | ||
} | ||
} | ||
</style> | ||
<script> | ||
(function () { | ||
const storageKey = "vite-ui-theme"; | ||
|
@@ -19,22 +74,49 @@ | |
const themeColor = isDark ? "#242424" : "#fafafa"; | ||
document | ||
.querySelector('meta[name="theme-color"]') | ||
.setAttribute("content", themeColor); | ||
?.setAttribute("content", themeColor); | ||
} | ||
|
||
function setTheme(newTheme) { | ||
root.classList.remove("light", "dark"); | ||
root.classList.add(newTheme); | ||
updateThemeColor(newTheme === "dark"); | ||
} | ||
|
||
if (theme === "system") { | ||
const systemTheme = window.matchMedia("(prefers-color-scheme: dark)") | ||
.matches | ||
? "dark" | ||
: "light"; | ||
root.classList.add(systemTheme); | ||
updateThemeColor(systemTheme === "dark"); | ||
setTheme(systemTheme); | ||
|
||
window | ||
.matchMedia("(prefers-color-scheme: dark)") | ||
.addEventListener("change", (e) => { | ||
setTheme(e.matches ? "dark" : "light"); | ||
}); | ||
} else { | ||
root.classList.add(theme); | ||
updateThemeColor(theme === "dark"); | ||
setTheme(theme); | ||
} | ||
|
||
// Add loaded class after React has mounted | ||
window.addEventListener("load", () => { | ||
const root = document.getElementById("root"); | ||
if (root) { | ||
// 使用 RAF 确保在下一帧渲染 | ||
requestAnimationFrame(() => { | ||
requestAnimationFrame(() => { | ||
root.classList.add("loaded"); | ||
}); | ||
}); | ||
} | ||
}); | ||
})(); | ||
</script> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/png" href="/apple-touch-icon.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>NEZHA</title> | ||
<link | ||
rel="stylesheet" | ||
href="https://fastly.jsdelivr.net/gh/lipis/[email protected]/css/flag-icons.min.css" | ||
|