複製自 Twitter 上的@jhey
[!注意]
這假設您已經設定了暗光模式,並具有某種功能來更新您的主題
/* Angled */ [data-style='angled']::view-transition-old(root) { animation: none; z-index: -1; } [data-style='angled']::view-transition-new(root) { animation: unclip 1s; clip-path: polygon(-100vmax 100%, 100% 100%, 100% -100vmax); } @keyframes unclip { 0% { clip-path: polygon(100% 100%, 100% 100%, 100% 100%); } }
useEffect(() => { // set the data-style attribute document.documentElement.dataset.style = "angled"; }, []);
在SSR中可以直接在html標籤中設定
function transitionColors() { if (typeof window !== "undefined") { document.startViewTransition(() => { const newTheme = theme === "light" ? "dark" : "light"; document.documentElement.dataset.theme = newTheme; updateTheme(newTheme); }); } }
可以透過包含對應的 css 檔案並添加正確的 data-style 屬性來新增更多過渡樣式
<select className="select select-bordered select-sm max-w-xs" onChange={(e) => (document.documentElement.dataset.style = e.target.value) } > <option value="default">Default</option> <option value="vertical">Vertical</option> <option value="wipe">Wipe</option> <option value="angled">Angled</option> <option value="flip">Flip</option> <option value="slides">Slides</option> </select>
反應範例
如果你喜歡這種類型的 CSS 技巧,請考慮關注 jhey
以上是查看過渡主題動畫的詳細內容。更多資訊請關注PHP中文網其他相關文章!