Butterfly美化

Hexo系列文章已经完成上传:
一、Hexo准备—Node.js、Vue
二、Hexo、主题、部署上线
三、Butterfly美化
四、Hexo之更换背景及透明度
五、Hexo-使用阿里iconfont图标
六、PicGo:搭建图床
七、Hexo-域名设置+收录

首先提示,本文量特别大哦!基本上有所有的美化,还在持续更新ing,谨慎入坑…

主题配置文件修改

基础配置

最最最开始的,好不容易搭建了自己的个人博客,当然要写上自己的名字、签名…,证明身份。而且身为一个Chinese,还是中文舒服,所以主目录下_config.yml的配置文件:

# Site
title: FATE      #标题名字
subtitle: ''
description: ''  #签名
keywords:
author: MoYu-zc  #作者名字
language: zh-CN  #默认en  可以改为这个
timezone: ''

主题支持以下三种语言:

  • default(en)
  • zh-CN (简体中文)
  • zh-TW (繁体中文)

导航栏修改

主目录下\source\_databutterfly.yml:

(如果没有这个文件夹,创建一个_data,把\themes\butterfly也就是主题文件夹下的_config.yml移动到_data文件夹下,重命名为butterfly.yml,以后只需要修改这个文件。这样为了留个备份,你搞坏了配置,还可以重新换成最开始的状态) ↓: 名称: /xxxx/ || 图标

menu:首页: / || fa fa-home归档: /archives/ || fa fa-archive标签: /tags/ || fa fa-tags分类: /categories/ || fa fa-folder-open留言板: /messageboard/ || fa fa-paper-plane友链: /link/ || fa fa-link日志: /timeline/ || fa fa-bell菜单 || fa fa-list:- 关于 || /about/ || fa fa-sitemap- myself || /myself/ || fa fa-id-card- butterfly主题 || https://github.com/jerryc127/hexo-theme-butterfly/ || fa fa-heart

代码块样式

主目录下/source/_databutterfly.yml:

## 代码块样式
highlight_theme: mac #default/darker/pale night/light/ocean/mac /false/  前面的参数任选一项为代码块显示效果
highlight_copy: true # copy button  是否显示复制按钮
highlight_lang: true # show the code language 是否显示代码块语言
highlight_shrink: false #true:打开文章默认折叠代码块内容/false:打开文章默认展开代码块/none:关闭代码折叠按钮
code_word_wrap: false  # 关闭滚动条

然后找到 Hexo 配置文件_config.yml,将line_number改成false:

highlight:enable: trueline_number: false # 改为falseauto_detect: falsetab_replace:

本地搜索

# Local search 本地搜索
local_search:enable: truelabels:input_placeholder: Search for Postshits_empty: "We didn't find any results for the search: ${query}" # 如果没有查到内容相关内容显示

需要安装插件,不然hexo g直接报错:

npm install hexo-generator-search --save

分割线图标更换

本次修改基于Butterfly主题 3.0.0 !

将图标更换为“太空飞船”。

修改butterfly主题配置文件_data_config.yml

hr_icon:enable: trueicon: '\f197' # the unicode value of Font Awesome iconicon-top: -10px

icon-top常用数值:

-20px:图标位于分割线上方

-10px:图标位于分割线中间

0px:图标位于分割线下方

创建标签文件夹

会在\source中创建对应的文件夹index.md

1.归档

这个页面不用创建,自动已经带了

2.标签

命令行输入:

hexo new page tags

出现source/tags/index.md文件:

---
title: 标签
date: 2018-01-05 00:00:00
type: tags
---

以后上传文章的md文件中,可以在标题头中加入tags,包含 标签 文章的例子:

---
title: 标签测试
tags:- 1111                 (这个就是文章的标签了)- 2222              (这个就是文章的标签了)
---

3.分类

命令行输入:

hexo new page categories

出现source/categories/index.md文件:

---
title: 分类
date: 2018-01-05 00:00:00
type: categories
---

以后上传文章的md文件中,可以在标题头中加入categories,包含 分类 文章的例子:

---
title: 分类测试
categories:- 1111                   (这个就是文章的分类了)- 2222                   (这个就是文章的分类了)
---

4.留言板

命令行输入:

hexo new page messageboard

出现source/messageboard/index.md文件:

---
title: 留言板
date: 2018-01-05 00:00:00
type: messageboard
---

5.友链

5.1、创建友情链接页面

命令行输入:

hexo new page link

出现source/link/index.md文件:

---
title: 友链
date: 2018-01-05 00:00:00
type: link
---
5.2、友情链接添加

在Hexo目录中的source/_data,创建一个文件link.yml,内容如下:

class:class_name: 友情链接link_list:1:name: 姓名link: 链接avatar: 图片descr: 签名2:name: 姓名link: 链接avatar: 图片descr: 签名

6.日志

命令行输入:

hexo new page timeline

出现source/timeline/index.md文件:

---
title: 日志
date: 2018-01-05 00:00:00
type: timeline
---

7.关于

命令行输入:

hexo new page about

出现source/about/index.md文件:

---
title: 关于
date: 2018-01-05 00:00:00
type: about
---

8.myself

命令行输入:

hexo new page myself

出现source/myself/index.md文件:

---
title: This is me
date: 2018-01-05 00:00:00
type: myself
---

标题样式

1.副标题设置

如果没设置副标题,上面的description:签名,就是显示在主页面。而设置的话,签名自动不显示,副标题出现。

\source\_data中的butterfly.yml:

subtitle:enable: truesub:- 何其荣幸 何德何能- 所有的不平凡都来自平凡

这个他们可以设置以下,打字效果可以开启,个人感觉不错,但是需要注意:

 # 如果有英文逗号' , ',使用转义字元 ,# 如果有英文双引号' " ',使用转义字元 "# 开头不允許转义字元,如需要,請把整个句子用双引号包住# 如果关闭打字效果,subtitle只会显示sub的第一行文字

我尝试了转义字符,但是会到“,”时,可能会有点卡,可以用空格代替。

2.副标题字体大小颜色

\themes\butterfly\source\css\_layout中的head.styl:

#site-subtitlecolor: var(--white)   此处修改为白色font-size: 1.05em     字体大小+minWidth768()font-size: 1.40em   字体大小

图片设置

图片可以使用网上的图片(即使用该图片链接),也可以使用\themes\butterfly\source\img下的图片。

1.网站图标

# Favicon(网站图标)
favicon: /img/favicon.png

2.头像

# Avatar (头像)
avatar:img: /img/tit.pngeffect: false

3.主页面图片

# The banner image of home page (主页的横幅图像)
index_img: /img/index_img.jpg

4.子标签页图片

# The banner image of archive page
archive_img: /img/tag.jpg

5.推荐

  1. 主页的顶部图可以在butterfly.yml设置index_img
  2. ``archives页的顶部图可以在Butterfly.yml设置archive_img`
  3. 其他page页的顶部图可以在各自的md页面设置front-matter中的top_img
favicon: /img/favicon.png
avatar:img: /img/tit.pngeffect: false
index_img: /img/index_img.jpg
default_top_img: /img/tag.jpg #这个推荐:不加入可能部分标签页不出现图片
archive_img: /img/tag.jpg
tag_img: /img/tag.jpg
category_img: /img/tag.jpg

6.文章列表图片

\source\_data中的butterfly.yml修改:

cover:# display the cover or not (是否顯示文章封面)index_enable: trueaside_enable: truearchives_enable: true# the position of cover in home page (封面顯示的位置)# left/right/bothposition: bothdefault_cover:

文章封面设置:

一个:

 default_cover: https://i.loli.net/2020/05/01/gkihqEjXxJ5UZ1C.jpg

多个:

此时会随机选择一张。

  default_cover:- https://i.loli.net/2020/05/01/gkihqEjXxJ5UZ1C.jpg- https://upimage.alexhchu.com/2020/10/21/671e773d973ae.jpg- https://upimage.alexhchu.com/2020/10/21/f5ac68ddaaf64.jpg- https://upimage.alexhchu.com/2020/10/21/5fecb0b094b73.jpg

or文章内

7.图片查看大图

主目录下/source/_databutterfly.yml:

这是两种方式只能选择一个 或者 两个都不选

8.图片懒加载

1.新增hexo-lazyload-image模块

npm install hexo-lazyload-image --save

2.在主目录配置文件_config.yml增加配置

lazyload:enable: trueloadingImg: /img/loading.gif

这个就是图片没加载出来的时候,出现一个动图转转转。

文章页样式

1.复制的内容后面加上版权信息

# copy settings
# copyright: Add the copyright information after copied content (复制的内容后面加上版权信息)
copy:enable: true

(↑这个相信大家都见过,不演示了)

2.文章版权信息

在底部会出现对应的作者、链接、声明

\source\_data中的butterfly.yml修改:

post_copyright:enable: truedecode: truelicense: CC BY-NC-SA 4.0license_url: https://creativecommons.org/licenses/by-nc-sa/4.0/

3.TOC目录

在文章页,会有一个目录,用于顯示TOC。

\source\_data中的butterfly.yml修改:

# toc (目錄)
toc:enable: truenumber: trueauto_open: true # auto open the sidebar

4.相关文章

在文章最下面,会出现相关信息文章的推送。

\source\_data中的butterfly.yml修改:

# Related Articles
related_post:enable: truelimit: 6 # Number of posts displayed  显示的文章数date_type: created # or created or updated 文章日期顯示創建日或者更新日

5.打赏

在你每篇文章的結尾,可以添加打赏按鈕。对应二維碼可以自行配置。

没有提供二维码的,可配置icon图片,然后在link上添加相应的打赏链接。用户点击图片就会跳转到对应链接去。

link可以不写,会默认为图片的链接。

\source\_data中的butterfly.yml修改:

# Sponsor/reward
reward:enable: falseQR_code:- img: /img/wechat.jpglink:text: wechat- img: /img/alipay.jpglink:text: alipay

侧边框样式

1.侧边框出现位置

\source\_databutterfly.yml修改:

# aside (側邊欄)
# --------------------------------------
aside:enable: truemobile: true # display on mobileposition: left # left or right

left:侧边框出现在左侧

right::侧边框出现在右侧

2.Follow me信息修改

\source\_databutterfly.yml修改:

图中icon图标使用的阿里iconfont图标

具体可参考:本站文章–Hexo-使用阿里iconfont图标

3.公告

\source\_databutterfly.yml修改:

card_announcement:enable: truecontent: This is my Blog  #修改此处

4.访问人數和运行时间

# 訪問人數
busuanzi:site_uv: truesite_pv: truepage_pv: true# 網頁運行時間
runtimeshow:enable: truepublish_date: 10/11/2020 00:00:00#格式: 月/日/年 時間#也可以 年/月/日 時間

特效部分

1.鼠标点击特效

\source\_databutterfly.yml修改:

2.鼠标移动特效

\themes\butterfly\source\css中创建一个css文件,将以下代码复制进去:

(function fairyDustCursor() {var possibleColors = ["#D61C59", "#E7D84B", "#1B8798"]var width = window.innerWidth;var height = window.innerHeight;var cursor = {x: width/2, y: width/2};var particles = [];function init() {bindEvents();loop();}// Bind events that are neededfunction bindEvents() {document.addEventListener('mousemove', onMouseMove);document.addEventListener('touchmove', onTouchMove);document.addEventListener('touchstart', onTouchMove);window.addEventListener('resize', onWindowResize);}function onWindowResize(e) {width = window.innerWidth;height = window.innerHeight;}function onTouchMove(e) {if( e.touches.length > 0 ) {for( var i = 0; i < e.touches.length; i++ ) {addParticle( e.touches[i].clientX, e.touches[i].clientY, possibleColors[Math.floor(Math.random()*possibleColors.length)]);}}}function onMouseMove(e) {cursor.x = e.clientX;cursor.y = e.clientY;addParticle( cursor.x, cursor.y, possibleColors[Math.floor(Math.random()*possibleColors.length)]);}function addParticle(x, y, color) {var particle = new Particle();particle.init(x, y, color);particles.push(particle);}function updateParticles() {for( var i = 0; i < particles.length; i++ ) {particles[i].update();}for( var i = particles.length -1; i >= 0; i-- ) {if( particles[i].lifeSpan < 0 ) {particles[i].die();particles.splice(i, 1);}}}function loop() {requestAnimationFrame(loop);updateParticles();}function Particle() {this.character = "*";this.lifeSpan = 120; //msthis.initialStyles ={"position": "fixed","top": "0", //必须加"display": "block","pointerEvents": "none","z-index": "10000000","fontSize": "20px","will-change": "transform"};this.init = function(x, y, color) {this.velocity = {x:  (Math.random() < 0.5 ? -1 : 1) * (Math.random() / 2),y: 1};this.position = {x: x - 10, y: y - 20};this.initialStyles.color = color;console.log(color);this.element = document.createElement('span');this.element.innerHTML = this.character;applyProperties(this.element, this.initialStyles);this.update();document.body.appendChild(this.element);};this.update = function() {this.position.x += this.velocity.x;this.position.y += this.velocity.y;this.lifeSpan--;this.element.style.transform = "translate3d(" + this.position.x + "px," + this.position.y + "px,0) scale(" + (this.lifeSpan / 120) + ")";}this.die = function() {this.element.parentNode.removeChild(this.element);}}function applyProperties( target, properties ) {for( var key in properties ) {target.style[ key ] = properties[ key ];}}init();
})();

接着,在\source\_databutterfly.yml引入:

  bottom:- <script type="text/javascript" src="/js/fairyDustCursor.js"></script>

忽略以下图片,可以自行尝试。

3.打字特效

\source\_databutterfly.yml修改:

4.页面特效

静态彩带

\source\_databutterfly.yml修改:

# canvas_ribbon (靜止彩帶背景)
# See: https://github.com/hustcc/ribbon.js
canvas_ribbon:enable: falsesize: 150alpha: 0.6zIndex: -1click_to_change: truemobile: true

点击页面,彩带会进行变化

动态彩带

\source\_databutterfly.yml修改:

# Fluttering Ribbon (動態彩帶)
canvas_fluttering_ribbon:enable: truemobile: true

这个彩带可以动态变换

canvas_nest

\source\_databutterfly.yml修改:

# canvas_nest
# https://github.com/hustcc/canvas-nest.js
canvas_nest:enable: falsecolor: '0,0,255' #线条颜色, default: '0,0,0'; opacity: 0.7 # 线条的不透明度 (0~1), default: 0.5.zIndex: -1 # z-index property of the background, default: -1.count: 99 # 线条数量, default: 99.mobile: false

这个可以鼠标自动吸附

Snackbar 弹窗

\source\_databutterfly.yml修改:

# Snackbar (Toast Notification 彈窗)
# position 彈窗位置
# 可選 top-left / top-center / top-right / bottom-left / bottom-center / bottom-right
snackbar:enable: trueposition: top-rightbg_light: '#49b1f5' # light 背景下的样式bg_dark: '#121212' # dark 背景下的样式

开启后,在你设置的位置会有可爱的小弹窗出现。

大家可以尝试一下,按个人爱好开启。

底部设置

butterfly.yml中配置:

# Footer Settings
# --------------------------------------
footer:owner:enable: truesince: 2020custom_text: 11111copyright: true # false: Hexo那句不显示ICP: # Chinese ICP License   #最后一句enable: trueurl: http://www.beian.gov.cntext: 豫ICP备20001029号icon: /img/icp.png

修改主题文件美化

添加404页面

1.找到自己心仪的404页面,这个网站很多很多呦。

https://404.life/

2.在\source中创建一个404文件夹和一个404.html

3.修改404.html内容

红线的地方,可以自行选择是否修改

红框的地方,必须修改 (可以按照图片中修改)

4.设置404跳过渲染,在主目录_config.yml中:

skip_render:- 404.html

5.butterfly.yml 可以关掉默认的404页面

# A simple 404 page
error_404:enable: false  # 关闭subtitle: 'Page Not Found'background: https://i.loli.net/2020/05/19/aKOcLiyPl2JQdFD.png

修改滚动条

1.创建一个css文件移动到\themes\butterfly\source\css目录下。

2.引入方式

将以下代码复制到你所创建的css文件,引入即可。

/* 滚动条 */
::-webkit-scrollbar {width: 8px;height: 8px;
}::-webkit-scrollbar-track {background-color: rgba(73, 177, 245, 0.2);border-radius: 2em;
}::-webkit-scrollbar-thumb {background-color: #49b1f5;background-image: -webkit-linear-gradient(45deg,rgba(255, 255, 255, 0.4) 25%,transparent 25%,transparent 50%,rgba(255, 255, 255, 0.4) 50%,rgba(255, 255, 255, 0.4) 75%,transparent 75%,transparent);border-radius: 2em;
}::-webkit-scrollbar-corner {background-color: transparent;
}::-moz-selection {color: #fff;background-color: #49b1f5;
}

页脚渐变

将以下代码复制到你所创建的css文件,引入即可。

可参考:修改滚动条部分中的引入方式

/* 页脚footer */
/* 渐变色滚动动画 */
@-webkit-keyframes Gradient {0% {background-position: 0 50%;}50% {background-position: 100% 50%;}100% {background-position: 0 50%;}
}@-moz-keyframes Gradient {0% {background-position: 0 50%;}50% {background-position: 100% 50%;}100% {background-position: 0 50%;}
}@keyframes Gradient {0% {background-position: 0 50%;}50% {background-position: 100% 50%;}100% {background-position: 0 50%;}
}
#footer {background: linear-gradient(-45deg, #ee7752, #ce3e75, #23a6d5, #23d5ab);background-size: 400% 400%;-webkit-animation: Gradient 10s ease infinite;-moz-animation: Gradient 10s ease infinite;animation: Gradient 10s ease infinite;-o-user-select: none;-ms-user-select: none;-webkit-user-select: none;-moz-user-select: none;user-select: none;border-top-left-radius: 10px;border-top-right-radius: 10px;
}
#footer:before {background-color: rgba(0, 0, 0, 0);
}

更换背景及透明度

1.透明度

将以下代码复制到你所创建的css文件,引入即可。

可参考:修改滚动条部分中的引入方式

/* 文章页背景 */
.layout_post>#post {/* 以下代表白色透明度为0.3 */background: rgba(255,255,255,.3);
}/* 所有背景(包括首页卡片、文章页、页面页等) */
#aside_content .card-widget, #recent-posts>.recent-post-item, .layout_page>div:first-child:not(.recent-posts), .layout_post>#page, .layout_post>#post, .read-mode .layout_post>#post{/* 以下代表白色透明度为0.3 */background: rgba(255,255,255,.3);
}

2.更换背景

老规矩,复制到你所创建的css文件,引入即可。

#web_bg {background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
}

当然这是我的博客背景

如果你想更改,具体可以参考本博客文章:Hexo之更换背景及透明度

移动端优化

\themes\butterfly\source\css\_third-party\normalize.min.css添加如下css代码:

/*移动端优化:去除归档、标签、最新文章、公告、、只保留网站统计*/
@media screen and (max-width: 800px) {#aside_contentdiv:not(:last-child) {display: none;font-size: 13px;}
}

查看网页RSS

本次修改基于Butterfly主题 3.0.0 !

实现:增加社交图标RSS,点击可查看网页RSS。

1.下载插件hexo-generator-feed

npm install hexo-generator-feed --save

2.在hexo的主配置文件_config.yml中任意位置添加以下代码:

feed:type: atompath: atom.xmllimit: 20hub:content:content_limit: 140content_limit_delim: ' 'order_by: -dateicon: icon.pngautodiscovery: truetemplate:

3.修改butterfly主题配置文件_config.yml ,添加RSS的图标:

social:fa fa-rss: /atom.xml || RSS链接

社交信息设置

\source\_data中的butterfly.yml修改social

(可以选择使用fa fa-xxx图标,也可以选择使用阿里iconfont图标)

具体可参考:本站文章–Hexo-使用阿里iconfont图标

此处要注意:

​ 很多人不知道自己上方填的网址怎么找

RSS上面有教程,GiuhubGithubCSDNbilibili直接个人主页网址就可以

QQ:下方 xxxxxxx 填上对应的qq号码即可

tencent://AddContact/?fromId=45&fromSubId=1&subcmd=all&uin=xxxxxxx&website=www.oicqzone.com

标签外挂

1.Note语法

​ 移植于next主题:可以在\source\_data中的butterfly.yml修改:

note:# Note tag style values:#  - simple    bs-callout old alert style. Default.#  - modern    bs-callout new (v2-v3) alert style.#  - flat      flat callout style with background, like on Mozilla or style: flaticons: true        #是否开启图片border_radius: 3# Offset lighter of background in % for modern and flat styles (modern: -12 | 12; flat: -18 | 6).# Offset also applied to label tag variables. This option can work with disabled note tag.light_bg_offset: 0

​ 该标签有两种使用方法。

默认模板

{% note [class] [no-icon] [style] %}
Any content (support inline tags too.io).
{% endnote %}
名称 用法
class 【可选】标识,不同的标识有不同的配色
( default / primary / success / info / warning / danger )
no-icon 【可选】不显示 icon
style 【可选】可以覆盖配置中的 style
(simple/modern/flat/disabled)

一、simple

{% note simple %}
默认 提示块
{% endnote %}{% note default simple %}
default 提示块
{% endnote %}{% note primary simple %}
primary 提示块
{% endnote %}{% note success simple %}
success 提示块
{% endnote %}{% note info simple %}
info 提示块
{% endnote %}{% note warning simple %}
warning 提示块
{% endnote %}{% note danger simple %}
danger 提示块
{% endnote %}

更多可以在我的个人博客观看

2.图片放置

可以根据图片长度自行排列

{% gallery %}
markdown 图片格式
{% endgallery %}

例如

{% gallery %}
![](https://upimage.alexhchu.com/2020/10/21/f5ac68ddaaf64.jpg)
![](https://upimage.alexhchu.com/2020/10/21/0d1b78c7157d4.jpg)
![](https://upimage.alexhchu.com/2020/10/19/34446d0d37dde.jpg)
{% endgallery %}

因为这个功能是用在Hexo美化中,在此博客效果不显示,具体可移步我的博客(最下方链接)

3.tag-hide

这个可以提供一个按钮,点击它,显示你隐藏的文字图片等。

Inline

这个可以隐藏文字,仅限于此。( content不能包含英文逗號,可用&sbquo;)

{% hideInline content,display,bg,color %}
  • content: 文本內容

  • display: 按钮显示的文字(可选)

  • bg: 按钮的背景颜色(可选)

  • color: 按钮文字的颜色(可选)

Demo

座右铭座右铭!! {% hideInline 何其荣幸 何德何能,别点我,#FF7242,#fff %}平平无奇。。。  {% hideInline 上面太花里胡哨了,上面真秀 %}

Block
这个也是提供一个按钮,而他可以隐藏文字图片代码块等。( dispaly不能包含英文逗號,可用&sbquo;)

{% hideBlock display,bg,color %}
content
{% endhideBlock %}
  • content: 文本內容

  • display: 按钮显示的文字(可选)

  • bg: 按钮的背景颜色(可选)

  • color: 按钮文字的颜色(可选)

Demo

座右铭座右铭!!
{% hideBlock  别点我,#FF7242,#fff %}
何其荣幸 何德何能
{% endhideBlock %}
平平无奇。。。
{% hideBlock 上面真秀 %}上面太花里胡哨了
{% endhideBlock %}

Toggle
如果你需要展示的內容太多,可以把它隐藏在收缩框里,需要时再把它展开

{% hideToggle display,bg,color %}
content
{% endhideToggle %}

Demo

{% hideToggle Wecome to my Blog %}欢迎欢迎欢迎MoYu‘s BlogGitee:https://moyu-zc.gitee.io/Github:https://moyu-zc.github.io/
{% endhideToggle %}

因为这个功能是用在Hexo美化中,在此博客效果不显示,具体可移步我的博客(最下方链接)

4.mermaid

mermaid标签不允许嵌套于一些隐藏属性的标签外挂

例如: tag-hide內的标签外挂和tabs标签外挂,也不能压缩代码

这会导致mermaid图示无法正常显示,使用时请留意。

使用mermaid标签可以绘制Flowchart(流程图)Sequence diagram(时序图 )Class Diagram(类别图)State Diagram(状态图)Gantt(甘特图)Pie Chart(圆形图),具体可以查看mermaid文檔
\source\_data中的butterfly.yml中修改:

mermaid:enable: true# built-in themes: default/forest/dark/neutraltheme: default

写法

{% mermaid %}
內容
{% endmermaid %}

Demo

{% mermaid %}
pieTest X"A" : 50"B" : 20"C" : 10"D" :  5
{% endmermaid %}

因为这个功能是用在Hexo美化中,在此博客效果不显示,具体可移步我的博客(最下方链接)

5.Tabs

Demo1------默认方式

{% tabs test1 %}
<!-- tab -->
**This is Tab 1.**
<!-- endtab --><!-- tab -->
**This is Tab 2.**
<!-- endtab --><!-- tab -->
**This is Tab 3.**
<!-- endtab -->
{% endtabs %}

Demo2------预设选择``tabs`

{% tabs test2, 3 %}
<!-- tab -->
**This is Tab 1.**
<!-- endtab --><!-- tab -->
**This is Tab 2.**
<!-- endtab --><!-- tab -->
**This is Tab 3.**
<!-- endtab -->
{% endtabs %}

Demo3------没有预设

{% tabs test3, -1 %}
<!-- tab -->
**This is Tab 1.**
<!-- endtab --><!-- tab -->
**This is Tab 2.**
<!-- endtab --><!-- tab -->
**This is Tab 3.**
<!-- endtab -->
{% endtabs %}

Demo4------自定义Tab名、 只有icon、icon和Tab名

{% tabs test4 %}
<!-- tab 第一個Tab -->
**tab名字为第一个Tab**
<!-- endtab --><!-- tab @fab fa-bell -->
**只有图标 没有Tab名字**
<!-- endtab --><!-- tab 身份证@fas fa-address-card -->
**名字+icon**
<!-- endtab -->
{% endtabs %}

因为这个功能是用在Hexo美化中,在此博客效果不显示,具体可移步我的博客(最下方链接)

6.Button

模板

{% btn [url],[text],[icon],[color] [style] [layout] [position] [size] %}[url]         : 链接
[text]        : 按钮文字
[icon]        : [可选] 图标
[color]       : [可选] 按钮背景颜色(默认style时)按鈕字體和邊框顔色(outline時)default/blue/pink/red/purple/orange/green
[style]       : [可选] 按钮样式 默认实心outline/留空
[layout]      : [可选] 按钮布局 默认为lineblock/留空
[position]    : [可选] 按钮位置 前提是设置了layout為block 默认为左边center/right/留空
[size]        : [可选] 按钮大小larger/留空
{% btn 'https://moyu-zc.gitee.io/',MoYu,far fa-hand-point-right,block %}
{% btn 'https://moyu-zc.gitee.io/',MoYu,far fa-hand-point-right,block center larger %}
{% btn 'https://moyu-zc.gitee.io/',MoYu,far fa-hand-point-right,block right outline larger %}

More styles:

{% btn 'https://moyu-zc.gitee.io/',MoYu,far fa-hand-point-right,larger %}
{% btn 'https://moyu-zc.gitee.io/',MoYu,far fa-hand-point-right,blue larger %}
{% btn 'https://moyu-zc.gitee.io/',MoYu,far fa-hand-point-right,pink larger %}
{% btn 'https://moyu-zc.gitee.io/',MoYu,far fa-hand-point-right,red larger %}
{% btn 'https://moyu-zc.gitee.io/',MoYu,far fa-hand-point-right,outline purple larger %}
{% btn 'https://moyu-zc.gitee.io/',MoYu,far fa-hand-point-right,outline orange larger %}
{% btn 'https://moyu-zc.gitee.io/',MoYu,far fa-hand-point-right,outline green larger %}

因为这个功能是用在Hexo美化中,在此博客效果不显示,具体可移步我的博客(最下方链接)

分享功能

分享功能有两种:

第一种:

如果你不知道 sharejs,可以查看说明

主目录下/source/_databutterfly.yml中修改:

sharejs:enable: truesites: facebook,twitter,wechat,weibo,qq  #想要显示的內容

第二种:

如果你不知道addtoany,可以查看说明

主目录下/source/_databutterfly.yml中修改:

addtoany:enable: trueitem: facebook,twitter,wechat,sina_weibo,facebook_messenger,email,copy_link

在线聊天

通用设置

butterfly中,有几种内置的在线聊天工具。

简单的,打开chat_btn,在右下角开启小按钮。

# Chat Button [recommend]
# It will create a button in the bottom right corner of website, and hide the origin button
chat_btn: true

为了不影响访客体验,可以开启chat_hide_show,开启后,只有向上滚动才会显示聊天按钮向下滚动时会隐藏按钮

# The origin chat button is displayed when scrolling up, and the button is hidden when scrolling down
chat_hide_show: true

如果使用工具自带的聊天按钮,位置可能会遮挡右下角图标,可以配置``rightside-bottom`调整右下角图标位置

chatra
在chatra中注册账号.

可以在Preferences中找到Public key

之后/source/_databutterfly.yml中修改:

# chatra
# https://chatra.io/
chatra:enable: trueid:           #这个就是Public key

tidio

在tidio中注册账号。

可以在Preferences中找到Public key

设置中还可以设置样式

之后/source/_databutterfly.yml中修改:

# tidio
# https://www.tidio.com/
tidio:enable: truepublic_key:    #这个就是Public key

daovoice

daovoice中注册。

应用设置----安装到网站 之中的app id

可在聊天设置里可以配置聊天按钮等样式

之后/source/_databutterfly.yml中修改:

# daovoice
# http://daovoice.io/
daovoice:enable: true app_id:      #这个就是app id

gitter

在gitter中登录上账号。

创建一個community或者room,复制名称到设置去。

# gitter
# https://gitter.im/
gitter:enable: trueroom: MoYuzc/community   #名称放这儿

crisp

打开crisp,注册账号。

在设置中,找到网站ID

之后,在butterflt.yml中修改:

# crisp
# https://crisp.chat/en/
crisp:enable: truewebsite_id:    #网站ID填写这儿

评论功能

开启评论需要在butterfly.ymlcommentsuse中填写你需要的评论。

支持双评论显示,只需要配置两个评论(第一个为默认显示)

comments:use:- Valine# - Disqus    text: true lazyload: falsecount: false
参数 解释
use 使用的评论(填写的评论首字母需要大写。最多支持两个,不需要就留空)
text 是否显示评论服务商的名字
lazyload 是否为评论开启lazyload,开启后,只有滚动到评论位置时才会加载评论所需要的资源(开启lazyload后,评论数将不显示)
count 是否在文章顶部显示评论数
livere 和 utterances 不支持评论数显示

注意:双评论不能是DisqusDisqusjs 一起,由于其共用同一个 ID,会出错。

以下是举例的我在用的:Valine

1.在LeanCloud中注册账号,并进入。

2.创建应用,命名就随便啦

3.创建成功后,进入设置

4.进入应用Keys

应用Keys中有AppIDAppKey,这两个需要填写到你的butterfly.yml

5.填写butterfly.yml

# valine
# https://valine.js.org
valine:appId:              #  app idappKey:              # app keypageSize: 10avatar: monsterid lang: zh-CN placeholder: Please leave your footprints pguest_info: nick,mail,link recordIP: true serverURLs: bg: emojiCDN: enableQQ: true requiredFields: nick,mail

​ 持续更新ing~~

个人博客为:
MoYu’s Github Blog
MoYu’s Gitee Blog

Butterfly美化相关推荐

  1. 猿创征文|Hexo+Github搭建完全免费个人博客详细教程

    前言 完全免费的搭建个人博客,没有任何收费,零基础也能上手,不需要编程基础,跟着操作来即可. 首先: 要了解一下我们搭建博客要用到的框架:Hexo是高效的静态站点生成框架,它基于Node.js.通过H ...

  2. Hexo-域名设置+收录

    Hexo-域名设置+Github域名加速+网址收录 Hexo系列文章已经完成上传: 一.Hexo准备-Node.js.Vue 二.Hexo.主题.部署上线 三.Butterfly美化 四.Hexo之更 ...

  3. Hexo-使用阿里iconfont图标

    Hexo-使用阿里iconfont图标 Hexo系列文章已经完成上传: 一.Hexo准备-Node.js.Vue 二.Hexo.主题.部署上线 三.Butterfly美化 四.Hexo之更换背景及透明 ...

  4. Butterfly基础美化

    前言 首先提示,本文量特别大哦!基本上有所有的美化,还在持续更新ing,谨慎入坑- 主题配置文件修改 基础配置 最最最开始的,好不容易搭建了自己的个人博客,当然要写上自己的名字.签名-,证明身份.而且 ...

  5. hexo(butterfly)蝴蝶主题+个性美化

    文章目录 一.前言 二.蝴蝶主题 1.快速入门 2.valine评论移植 3.文章移植 三.个性美化 1.boyui对话框式简介页面 2.说说动态页面 3.友链页面优化 一.前言 这两天心血来潮给自己 ...

  6. Hexo+Butterfly主题美化

    前言 本博客基于Hexo框架搭建,用到 hexo-theme-butterfly 主题(本人博客Butterfly版本3.4.0),hexo-theme-butterfly是基于Molunerfinn ...

  7. butterfly主题的下载及美化

    butterfly主题设置 一,安装butterfly主题 二,基础配置 三,导航栏配置 标签 分类 留言板 友链 日志 关于 四,副标题配置 五,图片设置 六,图片懒加载 七,图片大图查看 butt ...

  8. hexo博客butterfly主题美化

    博客代码展示 代码高亮样式 Butterfly 支持6种代码高亮样式: default darker pale night light ocean mac 只需要配置主题配置文件(配置butterfl ...

  9. 【Hexo】Hexo搭建Butterfly主题并快速美化

  10. 学习 Butterfly主题美化 这一篇就够了

    目录 一.主题配置文件修改 1.1.基础配置 1.2.导航栏配置(一) 1.3.导航栏配置(二) 1.4.副标题配置 一.主题配置文件修改 1.1.基础配置 主目录下 _config.yml # Si ...

最新文章

  1. 淘宝分布式框架Fourinone2.0正式版发布
  2. DELL optiplex 解决改回 AHCI蓝屏问题
  3. spring boot 1.5.4 整合 mybatis(十二)
  4. fedora14编译安装skyeye-1.3.2
  5. Github标星86.4K+:常见数据结构与算法的Python实现
  6. 携号转网全面启动后,新诈骗套路也跟上了!一招教你识别!
  7. 海思hi3798mv100刷linux,(JL)咪咕mg101_hi3798mv100盒子强刷第三方固件教程
  8. 电脑桌面出现空白图标无法删除
  9. 5 秒克隆声音「GitHub 热点速览 v.21.34」
  10. 关于vlc编解码器暂不支持: VLC 无法解码格式“MIDI” (MIDI Audio)解决
  11. 宝塔+青龙面板+机器人+诺兰
  12. BTT、BZZ、IPFS都是分布式存储那到底有何区别?一文读懂
  13. 【对软件项目的一些理解】多维团队分工合作模式
  14. 浅谈为什么倒序遍历List删除元素没有问题
  15. IOS中策略模式初运用
  16. mysql查询年份列表_【数据库_Mysql】查询当前年份的sql
  17. 北京律师事务所名称大合集
  18. iphone4 的使用技巧(经典呀)
  19. DG - 逻辑standby角色转换
  20. iOS 拨打电话三种方式总结

热门文章

  1. 上午卷-1.计算机组成与结构-软件设计师
  2. 干货分享 | 创业公司绝对不会告诉你他们在用的工具们
  3. 运维排查篇 | 访问nginx出现403错误
  4. mysql数据库安装错误报错Falled不成功,感叹号
  5. 计算机启动过程:MBR和BIOS
  6. Chrome浏览器取色器
  7. Android 仿音乐播放器自定义锁屏歌词功能
  8. android补间动画有哪几种,android三种动画详解(补间动画、帧动画、属性动画)...
  9. UVA12304 2D Geometry 110 in 1!
  10. win10出现“以太网没有有效的ip配置”的问题