Butterfly主题安装文档(二)之主题配置
一、回顾安装butterfly主题
1、在hexo项目根目录下执行操作clone主题
git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterfly
2、如果沒有 pug 以及 stylus 的渲染器,还需要下载,否则在项目运行时会报错:
npm install hexo-renderer-pug hexo-renderer-stylus --save
3、修改项目根目录下的_config.yml文件(称为站点配置文件),开启主题
theme: butterfly
4、升级建议
为了減少升级主题带来的不便,我们还需要做以下操作: 把主题文件夹中的 _config.yml 复制到 Hexo 根目录下,同重命名为 _config.butterfly.yml
Hexo会自动合并主题中的_config.yml 和 _config.butterfly.yml 里的配置,如果存在同名配置,会使用_config.butterfly.yml 的配置,其优先度较高。
二、设置网站个人资料
修改根目录下的站点配置文件_config.yml
修改网站各种资料,例如标题、副标题和邮箱等个人资料
title: 荒岛
subtitle: ''
description: 归途也还可爱
keywords:
author: 寻
language: zh-CN
timezone: Asia/Shanghai
主题支持三种语言:
- default(en)
- zh-CN (简体中文)
- zh-TW (繁体中文)
三、导航菜单
修改主题配置文件 _config.butterfly.yml
menu:
主页: / || fas fa-home
博文 || fa fa-graduation-cap:
分类: /categories/ || fa fa-archive
标签: /tags/ || fa fa-tags
归档: /archives/ || fa fa-folder-open
生活 || fas fa-list:
分享: /shuoshuo/ || fa fa-comments-o
相册: /photos/ || fa fa-camera-retro
音乐: /music/ || fa fa-music
影视: /movies/ || fas fa-video
友链: /links/ || fa fa-link
留言板: /comment/ || fa fa-paper-plane
关于笔者: /about/ || fas fa-heart
效果图
四、代码块显示设置
1、highlight_copy
开启代码复制功能, 修改主题配置文件_config.butterfly.yml :
highlight_copy: true
2、highlight_shrink
- true 全部代码框不展开,需点击
> 打开 - false 代码狂展开,有
> 点击按钮 - none 不显示
> 按钮 修改主题配置文件_config.butterfly.yml :
highlight_shrink: false
3、code_word_wrap
在默认情况下,hexo-highlight 在编译的时候不会实现代码自动换行。如果你不希望在代码块的区域里有横向滚动条的话,可以_config.butterfly.yml 开启代码换行:
code_word_wrap: true
4、我的_config.butterfly.yml :
highlight_theme: mac
highlight_copy: true
highlight_lang: true
highlight_shrink: false
highlight_height_limit: false
code_word_wrap: true
站点配置文件_config.yml :将line_number的值改为false
highlight:
enable: true
line_number: false
auto_detect: false
tab_replace: ''
5、效果图:
五、本地搜索功能
1、安装插件
npm install hexo-generator-search --save
2、主题配置文件 _config.butterfly.yml :
# Local search
local_search:
enable: true
labels:
input_placeholder: Search for Posts
hits_empty: "We didn't find any results for the search: ${query}" # 如果没有查到内容相关内容显示
3、效果图
六、创建文件夹
1、分类
hexo new page categories
会出现source/categories/index.md文件
2、标签
命令行输入:
hexo new page tags
会出现source/tags/index.md 文件:
…以此类推创建自己要的子页面
七、修改副标题
1、修改主题配置文件 _config.butterfly.yml :
subtitle:
enable: true
effect: true
loop: true
source: false
sub:
- 你在抱怨什么呢
- 为明天到来的事,说人生像是没有意义
- 没有选择会是唯一的路
- 这不是你自己的问题,人终归要好好去生活
2、副标题字体大小颜色
在\themes\butterfly\source\css_layout中的head.styl:
#site-subtitle
color: var(--white) //此处修改为白色
font-size: 1.05em // 字体大小
+minWidth768()
font-size: 1.40em // 字体大小
效果图:sub句子轮流出现
八、图片设置
图片可以用云图片链接或者放在本地文件夹位置:/themes/butterfly/source/img
1、网站图标
favicon: /img/favicon.png
2、头像
avatar:
img: /img/avatar.jpg
effect: false
3、主页封面图片
index_img: /img/background.jpg
4、文章详情页的顶部图片
当没有在front-matter 设置top_img 和cover 的情况下会显示该图 修改主题配置文件_config.butterfly.yml :
default_top_img: /img/default_top_img.jpg
5、归档页顶部图片
archive_img: /img/archive.jpg
6、tag页顶部图
tag_img: /img/tag_img.jpg
7、category页顶部图
category_img: /img/category_img.jpg
8、文章封面
每篇文章都可以设置一张封面,可以为每篇文章设置默认封面
也可以修改每个md文件的front-matter的cover属性,会覆盖上面的默认封面。修改主题配置文件_config.butterfly.yml:
cover:
index_enable: true
aside_enable: true
archives_enable: true
position: both
default_cover:
- https:
- http:
- http:
- http:
- http:
- http:
9、错误页面
配置了该属性后会替换无法展示的图片
error_img:
flink: /img/friend_404.gif
post_page: /img/404.jpg
效果图
九、图片懒加载
1.新增hexo-lazyload-image模块
npm install hexo-lazyload-image --save
2.在主目录配置文件_config.yml增加配置
lazyload:
enable: true
loadingImg: /img/loading.gif
这个就是图片没加载出来的时候,出现一个动图转转转的文章页样式
十、图片大图查看
修改主题配置文件_config.butterfly.yml
medium_zoom: false
fancybox: true
十一、文章页样式
以下修改主题配置文件_config.butterfly.yml
1、复制的内容后面加上版权信息
copy:
enable: true
copyright:
enable: false
limit_count: 50
2、文章版权信息
在底部会出现对应的作者、链接、声明
post_copyright:
enable: true
decode: true
license: CC BY-NC-SA 4.0
license_url: https://creativecommons.org/licenses/by-nc-sa/4.0/
效果图:
3、相关文章
在文章最下面出现推送
related_post:
enable: true
limit: 6
date_type: created
4、打赏
给文章结尾设置打赏按钮,可以放上收款二维码
reward:
enable: true
QR_code:
- img: /img/wechat.jpg
link:
text: 微信
- img: /img/alipay.jpg
link:
text: 支付宝
效果图:
十二、侧边栏样式
以下修改主题配置文件_config.butterfly.yml
1、调整侧边栏出现位置
aside:
enable: true
hide: false
button: true
mobile: true
position: right
2、个人信息
...
card_author:
enable: true
description:
button:
enable: true
icon: fab fa-github
text: Follow Me
link: https://github.com/xxxxxx
social:
fab fa-github: https://githubfast.com/lyr233 || Github
fa fa-book-open: https://blog.csdn.net/YR_112233 || CSDN
fab fa-qq: tencent://AddContact/?fromId=45&fromSubId=1&subcmd=all&uin=728831102&website=www.oicqzone.com || QQ
fas fa-envelope-open-text: mailto:728831102@qq.com || Email
效果图:
3、公告栏设置
...
card_announcement:
enable: true
content: This is my Blog
4、Toc目录
toc:
enable: true
number: true
auto_open: true
效果图:
十三、特效/美化
以下均为修改主题配置文件 _config.butterfly.yml :
1、鼠标点击的效果
有冒光特效、烟火特效、爱心特效、文字特效,选择其中一个将enable 设置为true就可以
activate_power_mode:
enable: false
colorful: true
shake: true
mobile: false
fireworks:
enable: false
zIndex: 9999
mobile: false
click_heart:
enable: false
mobile: false
ClickShowText:
enable: true
text:
- 富强
- 民主
- 文明
- 和谐
- 平等
- 公正
- 法治
- 爱国
- 敬业
- 诚信
- 友善
fontSize: 15px
random: true
mobile: true
2、打字效果
activate_power_mode:
enable: true
colorful: true
shake: true
mobile: true
3、自定义主题色
可以修改部分的UI颜色
4、网站背景
默认显示白色,可设置图片或者颜色 修改主题配置文件_config.butterfly.yml :
background:
我的修改为渐变色,步骤:
(1)在\Butterfly\source\css\ 目录下创建css文件 backgound.css :
可以自己调色
//代码百度得来
#web_bg {
background: -webkit-linear-gradient(
0deg,
rgba(247, 149, 51, 0.1) 0,
rgba(243, 112, 85, 0.1) 15%,
rgba(239, 78, 123, 0.1) 30%,
rgba(161, 102, 171, 0.1) 44%,
rgba(80, 115, 184, 0.1) 58%,
rgba(16, 152, 173, 0.1) 72%,
rgba(7, 179, 155, 0.1) 86%,
rgba(109, 186, 130, 0.1) 100%
);
background: -moz-linear-gradient(
0deg,
rgba(247, 149, 51, 0.1) 0,
rgba(243, 112, 85, 0.1) 15%,
rgba(239, 78, 123, 0.1) 30%,
rgba(161, 102, 171, 0.1) 44%,
rgba(80, 115, 184, 0.1) 58%,
rgba(16, 152, 173, 0.1) 72%,
rgba(7, 179, 155, 0.1) 86%,
rgba(109, 186, 130, 0.1) 100%
);
background: -o-linear-gradient(
0deg,
rgba(247, 149, 51, 0.1) 0,
rgba(243, 112, 85, 0.1) 15%,
rgba(239, 78, 123, 0.1) 30%,
rgba(161, 102, 171, 0.1) 44%,
rgba(80, 115, 184, 0.1) 58%,
rgba(16, 152, 173, 0.1) 72%,
rgba(7, 179, 155, 0.1) 86%,
rgba(109, 186, 130, 0.1) 100%
);
background: -ms-linear-gradient(
0deg,
rgba(247, 149, 51, 0.1) 0,
rgba(243, 112, 85, 0.1) 15%,
rgba(239, 78, 123, 0.1) 30%,
rgba(161, 102, 171, 0.1) 44%,
rgba(80, 115, 184, 0.1) 58%,
rgba(16, 152, 173, 0.1) 72%,
rgba(7, 179, 155, 0.1) 86%,
rgba(109, 186, 130, 0.1) 100%
);
background: linear-gradient(
90deg,
rgba(247, 149, 51, 0.1) 0,
rgba(243, 112, 85, 0.1) 15%,
rgba(239, 78, 123, 0.1) 30%,
rgba(161, 102, 171, 0.1) 44%,
rgba(80, 115, 184, 0.1) 58%,
rgba(16, 152, 173, 0.1) 72%,
rgba(7, 179, 155, 0.1) 86%,
rgba(109, 186, 130, 0.1) 100%
);
}
(2)修改配置文件_config.butterfly.yml 的引入方式
inject:
head:
- <link rel="stylesheet" href="/css/background.css">
bottom:
(3)如果背景色不生效,设置_config.butterfly.yml
background: '#efefef'
效果图:
5、footer 背景
footer 的背景,当设置 false 时,将与主题色一致。 修改主题配置文件_config.butterfly.yml :
footer_bg: true
6、背景特效
有三种,自己选择开启,将enable 设置为true就可以
修改主题配置文件_config.butterfly.yml :
canvas_ribbon:
enable: false
size: 150
alpha: 0.6
zIndex: -1
click_to_change: false
mobile: false
canvas_fluttering_ribbon:
enable: false
mobile: false
canvas_nest:
enable: true
color: '0,0,255'
opacity: 0.7
zIndex: -1
count: 99
mobile: false
十四、字数统计
1、项目目录右键打开 Git Bash Here,
2、npm install hexo-wordcount --save or yarn add hexo-wordcount
3、修改主题配置文件_config.butterfly.yml
wordcount:
enable: true
post_wordcount: true
min2read: true
total_wordcount: true
效果图:
十五、文章分享功能
addThis 、sharejs 、addtoany 三个选一个开启
addThis官网:https://www.addthis.com/
addThis:
enable: false
pubid:
sharejs:
enable: true
sites: facebook,twitter,wechat,weibo,qq
addtoany:
enable: false
item: facebook,twitter,wechat,sina_weibo,facebook_messenger,email,copy_link
sharejs效果图:
|