File tree Expand file tree Collapse file tree 11 files changed +705
-195
lines changed
Expand file tree Collapse file tree 11 files changed +705
-195
lines changed Original file line number Diff line number Diff line change 1+ # RSS 配置
2+ RSS_FEED_URL = https://note.weizwz.com/feed.xml
3+
4+ # 博客配置
5+ BLOG_URL = https://note.weizwz.com
Original file line number Diff line number Diff line change 88 background-clip : text;
99}
1010
11+ /* 自定义文章图标、背景 */
12+ .article-icon-bg {
13+ background : var (--weiz-icon-color );
14+ }
15+
16+ .article-icon {
17+ display : inline-block;
18+ background : white;
19+ mask : var (--url ) no-repeat center center;
20+ -webkit-mask : var (--url ) no-repeat center center;
21+ mask-size : cover;
22+ -webkit-mask-size : cover;
23+ }
24+
1125.max-w-8xl {
1226 max-width : 90rem ;
1327}
2236
2337/* 动画效果 */
2438@keyframes float-simple {
39+
2540 0% ,
2641 100% {
2742 transform : translateY (0px );
2843 }
44+
2945 50% {
3046 transform : translateY (-10px );
3147 }
5975
6076/* 浮动动画 */
6177@keyframes float {
78+
6279 0% ,
6380 100% {
6481 transform : translateY (0px ) rotate (0deg );
6582 }
83+
6684 33% {
6785 transform : translateY (-10px ) rotate (5deg );
6886 }
87+
6988 66% {
7089 transform : translateY (5px ) rotate (-3deg );
7190 }
7796
7897/* 卡通背景动画 */
7998@keyframes gentle-float {
80- 0% , 100% {
99+
100+ 0% ,
101+ 100% {
81102 transform : translateY (0px ) translateX (0px );
82103 }
104+
83105 25% {
84106 transform : translateY (-8px ) translateX (4px );
85107 }
108+
86109 50% {
87110 transform : translateY (-4px ) translateX (-2px );
88111 }
112+
89113 75% {
90114 transform : translateY (-12px ) translateX (6px );
91115 }
92116}
93117
94118@keyframes rotate-gentle {
95- 0% , 100% {
119+
120+ 0% ,
121+ 100% {
96122 transform : rotate (0deg );
97123 }
124+
98125 50% {
99126 transform : rotate (180deg );
100127 }
101128}
102129
103130@keyframes scale-breath {
104- 0% , 100% {
131+
132+ 0% ,
133+ 100% {
105134 transform : scale (1 );
106135 }
136+
107137 50% {
108138 transform : scale (1.1 );
109139 }
@@ -127,4 +157,4 @@ body {
127157 @media (prefers-color-scheme : dark) {
128158 color-scheme : dark;
129159 }
130- }
160+ }
You can’t perform that action at this time.
0 commit comments