Merge pull request #140 from Mitrichius/remove-flash-dark-theme/#139

Remove flash for dark theme on loading
This commit is contained in:
Dmitry Kolosov 2022-02-18 14:44:32 +03:00 committed by GitHub
commit ed55969059
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 80 additions and 51 deletions

View File

@ -16,6 +16,23 @@
{{ end -}} {{ end -}}
{{ partial "favicons.html" . }} {{ partial "favicons.html" . }}
<style>
body {
visibility: hidden;
opacity: 0;
}
</style>
<noscript>
<style>
body {
visibility: visible;
opacity: 1;
}
</style>
</noscript>
{{ partial "resource.html" (dict "context" . "type" "css" "filename" "css/main.css") }} {{ partial "resource.html" (dict "context" . "type" "css" "filename" "css/main.css") }}
{{ if .Site.Params.copyCodeButton | default true }} {{ if .Site.Params.copyCodeButton | default true }}

View File

@ -7,6 +7,7 @@
<button class="theme-switcher"> <button class="theme-switcher">
{{ i18n "darkTheme" }} {{ i18n "darkTheme" }}
</button> </button>
{{ end }}
<script> <script>
const STORAGE_KEY = 'user-color-scheme' const STORAGE_KEY = 'user-color-scheme'
@ -32,8 +33,13 @@
autoChangeScheme(autoDefinedScheme); autoChangeScheme(autoDefinedScheme);
autoDefinedScheme.addListener(autoChangeScheme); autoDefinedScheme.addListener(autoChangeScheme);
} }
if (switchButton) {
changeButtonText() changeButtonText()
switchButton.addEventListener('click', switchTheme, false) switchButton.addEventListener('click', switchTheme, false)
}
showContent()
}) })
function detectCurrentScheme() { function detectCurrentScheme() {
@ -52,10 +58,12 @@
return 'light' return 'light'
} }
function changeButtonText() function changeButtonText(switchButton)
{ {
if (switchButton) {
switchButton.textContent = currentTheme == 'dark' ? {{ i18n "lightTheme" }} : {{ i18n "darkTheme" }} switchButton.textContent = currentTheme == 'dark' ? {{ i18n "lightTheme" }} : {{ i18n "darkTheme" }}
} }
}
function switchTheme(e) { function switchTheme(e) {
if (currentTheme == 'dark') { if (currentTheme == 'dark') {
@ -69,5 +77,9 @@
} }
changeButtonText() changeButtonText()
} }
function showContent() {
document.body.style.visibility = 'visible';
document.body.style.opacity = 1;
}
</script> </script>
{{ end }}