hexo+butterfly网站一图流教程
参考地址:
新建css文件
文件路径[BlogRoot]\source\css\totalgraph.css
,在自定义css文件中加入如下代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
#page-header { background: transparent !important; }
#footer::before { background: transparent !important; } #page-header::before { background: transparent !important; }
[data-theme="dark"] #footer::before { background: transparent !important; } [data-theme="dark"] #page-header::before { background: transparent !important; }
#footer { background: rgba(255, 255, 255, 0); color: #000; border-top-right-radius: 20px; border-top-left-radius: 20px; backdrop-filter: saturate(100%) blur(5px) }
#footer::before { background: rgba(255,255,255,0) }
#footer #footer-wrap { color: var(--font-color); }
#footer #footer-wrap a { color: var(--font-color); }
|
修改配置文件
在主题配置文件[BlogRoot]\_config.butterfly.yml
文件中的inject
配置项的head
子项加入
1 2 3
| inject: head: - <link rel="stylesheet" href="/css/totalgraph.css" media="defer" onload="this.media='all'">
|
在\_config.butterfly.yml
文件中取消头图与页脚图加载并设置背景图
1 2 3 4 5 6 7 8 9 10
| # The banner image of home page index_img:
# Footer Background footer_bg: false
# Website Background #设置背景图 # Can set it to color or image url background: url(https://source.fomal.cc/img/home_bg.webp)
|
执行三连