From f4fe581cadf72242a9f4f1062029dfaf749d3dbd Mon Sep 17 00:00:00 2001 From: <> Date: Fri, 12 Apr 2024 12:14:08 +0000 Subject: [PATCH] Deployed 48c46f0 with MkDocs version: 1.5.3 --- sitemap.xml.gz | Bin 556 -> 556 bytes stylesheets/extra.css | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/sitemap.xml.gz b/sitemap.xml.gz index c42a9f6c9fd5046cc05bb31f5f2e8822b2077453..7cfb3d20f04e617abb25fdf3c3b819626d39a98b 100644 GIT binary patch delta 14 VcmZ3(vWA6KzMF%iXCtdR6965~1B(Cv delta 14 VcmZ3(vWA6KzMF%?b0e!d6962414sY> diff --git a/stylesheets/extra.css b/stylesheets/extra.css index ba1f0b0..4b2a12c 100644 --- a/stylesheets/extra.css +++ b/stylesheets/extra.css @@ -459,6 +459,25 @@ padding: 20px 0; font-size: 30px; } +/* 添加过渡效果 */ +* { + transition-property: color, background-color; + /* 设置过渡的属性 */ + transition-duration: 0.5s; + /* 设置过渡的时间 */ + transition-timing-function: cubic-bezier(0.01, 0.34, 0.9, 1.14); + /* 设置过渡的缓动函数 */ +} + +/* 屏蔽过渡效果 */ +p, +h1, +h2, +hr { + transition: none !important; +} + +/*上面是过渡效果*/