-
Notifications
You must be signed in to change notification settings - Fork 53
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
69c5ce8
commit 33729c6
Showing
4 changed files
with
81 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<script setup lang="ts"> | ||
import { useData } from 'vitepress'; | ||
import DefaultTheme from 'vitepress/theme'; | ||
import { nextTick, provide } from 'vue'; | ||
const { isDark } = useData(); | ||
const enableTransitions = () => | ||
'startViewTransition' in document && | ||
window.matchMedia('(prefers-reduced-motion: no-preference)').matches; | ||
provide('toggle-appearance', async ({ clientX: x, clientY: y }: MouseEvent) => { | ||
if (!enableTransitions()) { | ||
isDark.value = !isDark.value; | ||
return; | ||
} | ||
const clipPath = [ | ||
`circle(0px at ${x}px ${y}px)`, | ||
`circle(${Math.hypot( | ||
Math.max(x, innerWidth - x), | ||
Math.max(y, innerHeight - y) | ||
)}px at ${x}px ${y}px)`, | ||
]; | ||
await document.startViewTransition(async () => { | ||
isDark.value = !isDark.value; | ||
await nextTick(); | ||
}).ready; | ||
document.documentElement.animate( | ||
{ clipPath: isDark.value ? clipPath.reverse() : clipPath }, | ||
{ | ||
duration: 300, | ||
easing: 'ease-in', | ||
pseudoElement: `::view-transition-${isDark.value ? 'old' : 'new'}(root)`, | ||
} | ||
); | ||
}); | ||
</script> | ||
|
||
<template> | ||
<DefaultTheme.Layout /> | ||
</template> | ||
|
||
<style> | ||
::view-transition-old(root), | ||
::view-transition-new(root) { | ||
animation: none; | ||
mix-blend-mode: normal; | ||
} | ||
::view-transition-old(root), | ||
.dark::view-transition-new(root) { | ||
z-index: 1; | ||
} | ||
::view-transition-new(root), | ||
.dark::view-transition-old(root) { | ||
z-index: 9999; | ||
} | ||
.VPSwitchAppearance { | ||
width: 22px !important; | ||
} | ||
.VPSwitchAppearance .check { | ||
transform: none !important; | ||
} | ||
</style> |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.