安装插件
安装插件,在博客根目录[hexo-blog-demo]下打开终端,运行以下指令:1 npm install hexo-butterfly-tag-plugins-plus --save
替换插件hexo自带的markdown渲染插件hexo-renderer-marked
与安装的hexo-renderer-kramed
外挂标签语法兼容存在问题。 建议删除原始的hexo-renderer-marked
,换成hexo-renderer-kramed
。
1 2 3 npm uninstall hexo-renderer-marked --save npm install hexo-renderer-kramed --save
修改配置修改主题配置文件_config.butterfly.yml
中添加下面的代码即可。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 tag_plugins: enable: true priority: 5 issues: false link: placeholder: /img/link.png CDN: anima: https://npm.elemecdn.com/hexo-butterfly-tag-plugins-plus@latest/lib/assets/font-awesome-animation.min.css jquery: https://npm.elemecdn.com/jquery@latest/dist/jquery.min.js issues: https://npm.elemecdn.com/hexo-butterfly-tag-plugins-plus@latest/lib/assets/issues.js iconfont: //at.alicdn.com/t/font_2032782_8d5kxvn09md.js carousel: https://npm.elemecdn.com/hexo-butterfly-tag-plugins-plus@latest/lib/assets/carousel-touch.js tag_plugins_css: https://npm.elemecdn.com/hexo-butterfly-tag-plugins-plus@latest/lib/tag_plugins.css
参数释义
参数
类型
释义
enable
true/false
【必选】控制开关
priority
number
【可选】过滤器优先级,数值越小,执行越早,默认为10,选填
issues
true/false
【可选】issues标签控制开关,默认为false
link.placeholder
URL
【必选】link卡片外挂标签的默认图标
CDN.anima
URL
【可选】动画标签anima的依赖
CDN.jquery
URL
【可选】issues标签依赖
CDN.issues
URL
【可选】issues标签依赖
CDN.iconfont
URL
【可选】iconfont标签symbol样式引入,如果不想引入,则设为false
CDN.carousel
URL
【可选】carousel旋转相册标签鼠标拖动依赖,如果不想引入则设为false
CDN.tag_plugins_css
URL
【可选】外挂标签样式的CSS依赖,为避免CDN缓存延迟,建议将@latest改为具体版本号
分栏 tab Butterfly的tab标签
和Volantis的tab标签
都是移值自NexT主题
,所以写法和效果一模一样
1 2 3 4 5 {% tabs Unique name, [index] %} <!-- tab [Tab caption] [@icon] --> Any content (support inline tags too). <!-- endtab --> {% endtabs %}
Unique name
: 选项卡块标签的唯一名称,不带逗号。 将在#id中用作每个标签及其索引号的前缀。 如果名称中包含空格,则对于生成#id,所有空格将由破折号代替。 仅当前帖子/页面的URL必须是唯一的!
[index]
: 活动选项卡的索引号。 如果未指定,将选择第一个标签(1)。 如果index为-1,则不会选择任何选项卡。 可选参数。
[Tab caption]
: 当前选项卡的标题。 如果未指定标题,则带有制表符索引后缀的唯一名称将用作制表符的标题。 如果未指定标题,但指定了图标,则标题将为空。 可选参数。
[@icon]
: FontAwesome图标名称(全名,看起来像“ fas fa-font”) 可以指定带空格或不带空格; 例如’Tab caption @icon’ 和 ‘Tab caption@icon’. 可选参数。
Demo 4 - 自定义Tab名 + 只有icon + icon和Tab名
1 2 3 4 5 6 7 8 9 10 11 {% tabs test1 %} <!-- tab --> **This is Tab 1.** <!-- endtab --> <!-- tab --> **This is Tab 2.** <!-- endtab --> <!-- tab --> **This is Tab 3.** <!-- endtab --> {% endtabs %}
1 2 3 4 5 6 7 8 9 10 11 {% tabs test2, 3 %} <!-- tab --> **This is Tab 1.** <!-- endtab --> <!-- tab --> **This is Tab 2.** <!-- endtab --> <!-- tab --> **This is Tab 3.** <!-- endtab --> {% endtabs %}
1 2 3 4 5 6 7 8 9 10 11 {% tabs test3, -1 %} <!-- tab --> **This is Tab 1.** <!-- endtab --> <!-- tab --> **This is Tab 2.** <!-- endtab --> <!-- tab --> **This is Tab 3.** <!-- endtab --> {% endtabs %}
Demo 4 - 自定义Tab名 + 只有icon + icon和Tab名
1 2 3 4 5 6 7 8 9 10 11 {% tabs test4 %} <!-- tab 第一个Tab --> **tab名字为第一个Tab** <!-- endtab --> <!-- tab @fab fa-apple-pay --> **只有图标 没有Tab名字** <!-- endtab --> <!-- tab 炸弹@fas fa-bomb --> **名字+icon** <!-- endtab --> {% endtabs %}
行内文本样式 text 1 2 3 4 5 6 {% u 文本内容 %} {% emp 文本内容 %} {% wavy 文本内容 %} {% del 文本内容 %} {% kbd 文本内容 %} {% psw 文本内容 %}
带 下划线 的文本
带 着重号 的文本
带 波浪线 的文本
带 删除线 的文本
键盘样式的文本 command + D
密码样式的文本:这里没有验证码
1 2 3 4 5 6 1. 带 {% u 下划线 %} 的文本2. 带 {% emp 着重号 %} 的文本3. 带 {% wavy 波浪线 %} 的文本4. 带 {% del 删除线 %} 的文本5. 键盘样式的文本 {% kbd command %} + {% kbd D %}6. 密码样式的文本:{% psw 这里没有验证码 %}
行内文本 span 1 {% span 样式参数(参数以空格划分), 文本内容 %}
字体
: logo, code
颜色
: red,yellow,green,cyan,blue,gray
大小
: small, h4, h3, h2, h1, large, huge, ultra
对齐方向
: left, center, right
彩色文字 在一段话中方便插入各种颜色的标签,包括:红色 、黄色 、绿色 、青色 、蓝色 、灰色 。
超大号文字 文档「开始」页面中的标题部分就是超大号文字。Volantis A Wonderful Theme for Hexo
1 2 3 4 5 6 - 彩色文字在一段话中方便插入各种颜色的标签,包括:{% span red, 红色 %}、{% span yellow, 黄色 %}、{% span green, 绿色 %}、{% span cyan, 青色 %}、{% span blue, 蓝色 %}、{% span gray, 灰色 %}。 - 超大号文字文档「开始」页面中的标题部分就是超大号文字。 {% span center logo large, Volantis %} {% span center small, A Wonderful Theme for Hexo %}
段落文本 p 1 {% p 样式参数(参数以空格划分), 文本内容 %}
字体
: logo, code
颜色
: red,yellow,green,cyan,blue,gray
大小
: small, h4, h3, h2, h1, large, huge, ultra
对齐方向
: left, center, right
1 2 3 4 5 6 - 彩色文字在一段话中方便插入各种颜色的标签,包括:{% p red, 红色 %}、{% p yellow, 黄色 %}、{% p green, 绿色 %}、{% p cyan, 青色 %}、{% p blue, 蓝色 %}、{% p gray, 灰色 %}。 - 超大号文字文档「开始」页面中的标题部分就是超大号文字。 {% p center logo large, Volantis %} {% p center small, A Wonderful Theme for Hexo %}
引用 note 最新版butterfly标签
支持引用fontawesome V5
图标,效果上已经优于volantis的note标签
。故不再额外引入volantis的note样式 以下是butterfly主题
的note
写法。
修改主题配置文件1 2 3 4 5 6 7 8 9 10 11 12 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 StackOverflow. # - disabled disable all CSS styles import of note tag. style: simple icons: false 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
方法一1 2 3 4 5 6 7 8 9 10 11 12 13 {% 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 %}
方法二1 2 3 {% note [color] [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)
方法二
参数
用法
class
【可选】标识,不同的标识有不同的配色( default / blue / pink / red / purple / orange / green )
no-icon
【可选】可配置自定义 icon (只支持 fontawesome 图标, 也可以配置 no-icon )
style
【可选】可以覆盖配置中的 style(simple/modern/flat/disabled)
方法一 simple样式
modern样式
flat样式
disabled样式
no-icon样式
方法二 simple样式
modern样式
flat样式
disabled样式
no-icon样式
方法一 simple样式
1 2 3 4 5 6 7 {% 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 %}
modern样式
1 2 3 4 5 6 7 {% note modern %}默认 提示块标签{% endnote %} {% note default modern %}default 提示块标签{% endnote %} {% note primary modern %}primary 提示块标签{% endnote %} {% note success modern %}success 提示块标签{% endnote %} {% note info modern %}info 提示块标签{% endnote %} {% note warning modern %}warning 提示块标签{% endnote %} {% note danger modern %}danger 提示块标签{% endnote %}
flat样式
1 2 3 4 5 6 7 {% note flat %}默认 提示块标签{% endnote %} {% note default flat %}default 提示块标签{% endnote %} {% note primary flat %}primary 提示块标签{% endnote %} {% note success flat %}success 提示块标签{% endnote %} {% note info flat %}info 提示块标签{% endnote %} {% note warning flat %}warning 提示块标签{% endnote %} {% note danger flat %}danger 提示块标签{% endnote %}
disabled样式
1 2 3 4 5 6 7 {% note disabled %}默认 提示块标签{% endnote %} {% note default disabled %}default 提示块标签{% endnote %} {% note primary disabled %}primary 提示块标签{% endnote %} {% note success disabled %}success 提示块标签{% endnote %} {% note info disabled %}info 提示块标签{% endnote %} {% note warning disabled %}warning 提示块标签{% endnote %} {% note danger disabled %}danger 提示块标签{% endnote %}
no-icon样式
1 2 3 4 5 6 7 {% note no-icon %}默认 提示块标签{% endnote %} {% note default no-icon %}default 提示块标签{% endnote %} {% note primary no-icon %}primary 提示块标签{% endnote %} {% note success no-icon %}success 提示块标签{% endnote %} {% note info no-icon %}info 提示块标签{% endnote %} {% note warning no-icon %}warning 提示块标签{% endnote %} {% note danger no-icon %}danger 提示块标签{% endnote %}
方法二 simple样式
1 2 3 4 5 6 7 {% note 'fab fa-cc-visa' simple %}你是刷 Visa 还是 UnionPay{% endnote %} {% note blue 'fas fa-bullhorn' simple %}2021年快到了....{% endnote %} {% note pink 'fas fa-car-crash' simple %}小心开车 安全至上{% endnote %} {% note red 'fas fa-fan' simple%}这是三片呢?还是四片?{% endnote %} {% note orange 'fas fa-battery-half' simple %}你是刷 Visa 还是 UnionPay{% endnote %} {% note purple 'far fa-hand-scissors' simple %}剪刀石头布{% endnote %} {% note green 'fab fa-internet-explorer' simple %}前端最讨厌的浏览器{% endnote %}
modern样式
1 2 3 4 5 6 7 {% note 'fab fa-cc-visa' modern %}你是刷 Visa 还是 UnionPay{% endnote %} {% note blue 'fas fa-bullhorn' modern %}2021年快到了....{% endnote %} {% note pink 'fas fa-car-crash' modern %}小心开车 安全至上{% endnote %} {% note red 'fas fa-fan' modern%}这是三片呢?还是四片?{% endnote %} {% note orange 'fas fa-battery-half' modern %}你是刷 Visa 还是 UnionPay{% endnote %} {% note purple 'far fa-hand-scissors' modern %}剪刀石头布{% endnote %} {% note green 'fab fa-internet-explorer' modern %}前端最讨厌的浏览器{% endnote %}
flat样式
1 2 3 4 5 6 7 {% note 'fab fa-cc-visa' flat %}你是刷 Visa 还是 UnionPay{% endnote %} {% note blue 'fas fa-bullhorn' flat %}2021年快到了....{% endnote %} {% note pink 'fas fa-car-crash' flat %}小心开车 安全至上{% endnote %} {% note red 'fas fa-fan' flat%}这是三片呢?还是四片?{% endnote %} {% note orange 'fas fa-battery-half' flat %}你是刷 Visa 还是 UnionPay{% endnote %} {% note purple 'far fa-hand-scissors' flat %}剪刀石头布{% endnote %} {% note green 'fab fa-internet-explorer' flat %}前端最讨厌的浏览器{% endnote %}
disabled样式
1 2 3 4 5 6 7 {% note 'fab fa-cc-visa' disabled %}你是刷 Visa 还是 UnionPay{% endnote %} {% note blue 'fas fa-bullhorn' disabled %}2021年快到了....{% endnote %} {% note pink 'fas fa-car-crash' disabled %}小心开车 安全至上{% endnote %} {% note red 'fas fa-fan' disabled %}这是三片呢?还是四片?{% endnote %} {% note orange 'fas fa-battery-half' disabled %}你是刷 Visa 还是 UnionPay{% endnote %} {% note purple 'far fa-hand-scissors' disabled %}剪刀石头布{% endnote %} {% note green 'fab fa-internet-explorer' disabled %}前端最讨厌的浏览器{% endnote %}
no-icon样式
1 2 3 4 5 6 7 {% note no-icon %}你是刷 Visa 还是 UnionPay{% endnote %} {% note blue no-icon %}2021年快到了....{% endnote %} {% note pink no-icon %}小心开车 安全至上{% endnote %} {% note red no-icon %}这是三片呢?还是四片?{% endnote %} {% note orange no-icon %}你是刷 Visa 还是 UnionPay{% endnote %} {% note purple no-icon %}剪刀石头布{% endnote %} {% note green no-icon %}前端最讨厌的浏览器{% endnote %}
上标标签 tip 1 {% tip [参数,可选] %}文本内容{% endtip %}
样式
: success,error,warning,bolt,ban,home,sync,cogs,key,bell
自定义图标
: 支持fontawesome。
1 2 3 4 5 6 7 8 9 10 11 12 13 {% tip %}default{% endtip %} {% tip info %}info{% endtip %} {% tip success %}success{% endtip %} {% tip error %}error{% endtip %} {% tip warning %}warning{% endtip %} {% tip bolt %}bolt{% endtip %} {% tip ban %}ban{% endtip %} {% tip home %}home{% endtip %} {% tip sync %}sync{% endtip %} {% tip cogs %}cogs{% endtip %} {% tip key %}key{% endtip %} {% tip bell %}bell{% endtip %} {% tip fa-atom %}自定义font awesome图标{% endtip %}
动态标签 anima 1 {% tip [参数,可选] %}文本内容{% endtip %}
将所需的CSS类添加到图标(或DOM中的任何元素)。 对于父级悬停样式,需要给目标元素添加指定CSS类,同时还要给目标元素的父级元素添加CSS类faa-parent animated-hover
。(详情见示例及示例源码) You can regulate the speed of the animation by adding the CSS class or . faa-fastfaa-slow 可以通过给目标元素添加CSS类faa-fast
或faa-slow
来控制动画快慢。
更多详情请参看font-awesome-animation文档
当页面加载时显示动画 On DOM load
当鼠标悬停时显示动画 On hover
当鼠标悬停在父级元素时显示动画 On parent hover
faa-wrench animated
faa-wrench animated-hover
faa-wrench
faa-ring animated
faa-ring animated-hover
faa-ring
faa-horizontal animated
faa-horizontal animated-hover
faa-horizontal
faa-vertical animated
faa-vertical animated-hover
faa-vertical
faa-flash animated
faa-flash animated-hover
faa-flash
faa-bounce animated
faa-bounce animated-hover
faa-bounce
faa-spin animated
faa-spin animated-hover
faa-spin
faa-tada animated
faa-tada animated-hover
faa-tada
faa-pulse animated
faa-pulse animated-hover
faa-pulse
faa-shake animated
faa-shake animated-hover
faa-shake
faa-tada animated
faa-tada animated-hover
faa-tada
faa-passing animated
faa-passing animated-hover
faa-passing
faa-passing-reverse animated
faa-passing-reverse animated-hover
faa-passing-reverse
faa-burst animated
faa-burst animated-hover
faa-burst
faa-falling animated
faa-falling animated-hover
faa-falling
faa-rising animated
faa-rising animated-hover
faa-rising
On DOM load(当页面加载时显示动画)
调整动画速度
On hover(当鼠标悬停时显示动画)
On parent hover(当鼠标悬停在父级元素时显示动画)
On DOM load(当页面加载时显示动画)1 2 {% tip warning faa-horizontal animated %}warning{% endtip %} {% tip ban faa-flash animated %}ban{% endtip %}
调整动画速度1 2 {% tip warning faa-horizontal animated faa-fast %}warning{% endtip %} {% tip ban faa-flash animated faa-slow %}ban{% endtip %}
On hover(当鼠标悬停时显示动画)1 2 {% tip warning faa-horizontal animated-hover %}warning{% endtip %} {% tip ban faa-flash animated-hover %}ban{% endtip %}
On parent hover(当鼠标悬停在父级元素时显示动画)1 2 {% tip warning faa-parent animated-hover %}<p class ="faa-horizontal" > warning</p > {% endtip %} {% tip ban faa-parent animated-hover %}<p class ="faa-flash" > ban</p > {% endtip %}
复选列表 checkbox 1 {% checkbox 样式参数(可选), 文本(支持简单md) %}
样式
: plus, minus, times
颜色
: red,yellow,green,cyan,blue,gray
选中状态
: checked
1 2 3 4 5 6 7 8 9 10 {% checkbox 纯文本测试 %} {% checkbox checked, 支持简单的 [markdown ](https://guides.github.com/features/mastering-markdown/ ) 语法 %} {% checkbox red, 支持自定义颜色 %} {% checkbox green checked, 绿色 + 默认选中 %} {% checkbox yellow checked, 黄色 + 默认选中 %} {% checkbox cyan checked, 青色 + 默认选中 %} {% checkbox blue checked, 蓝色 + 默认选中 %} {% checkbox plus green checked, 增加 %} {% checkbox minus yellow checked, 减少 %} {% checkbox times red checked, 叉 %}
单选列表 radio 1 {% radio 样式参数(可选), 文本(支持简单md) %}
颜色
: red,yellow,green,cyan,blue,gray
选中状态
: checked
1 2 3 4 5 6 7 {% radio 纯文本测试 %} {% radio checked, 支持简单的 [markdown ](https://guides.github.com/features/mastering-markdown/ ) 语法 %} {% radio red, 支持自定义颜色 %} {% radio green, 绿色 %} {% radio yellow, 黄色 %} {% radio cyan, 青色 %} {% radio blue, 蓝色 %}
时间轴 timeline 插件版v1.0.16
以后,为避免与Butterfly_v4.0+版本
中的timeline外挂标签
冲突,已经移除了插件内的timeline外挂标签,请低于Butterfly_v4.0
的用户升级主题或安装1.0.15版本
的外挂标签插件,或者自行添加timeline.js
和timeline.styl
文件至对应文件夹。请使用了原有timeline外挂标签
的用户受累替换语法格式。Butterfly_v4.0+
自带的timeline外挂标签
样式更加好看。语法语意也更加清晰。
1 2 3 4 5 6 7 8 {% timeline 时间线标题(可选)[,color] %} <!-- timeline 时间节点(标题) --> 正文内容 <!-- endtimeline --> <!-- timeline 时间节点(标题) --> 正文内容 <!-- endtimeline --> {% endtimeline %}
title
标题/时间线
color
timeline颜色:default(留空) / blue / pink / red / purple / orange / green
如果有 hexo-lazyload-image
插件,需要删除并重新安装最新版本,设置 lazyload.isSPA: true
。
2.x 版本的 css 和 js 不适用于 3.x 版本,如果使用了 use_cdn: true
则需要删除。
2.x 版本的 fancybox 标签在 3.x 版本中被重命名为 gallery 。
2.x 版本的置顶 top: true
改为了 pin: true
,并且同样适用于 layout: page
的页面。
如果使用了 hexo-offline
插件,建议卸载,3.0 版本默认开启了 pjax 服务。
全局搜索 seotitle
并替换为 seo_title
。
group 组件的索引规则有变,使用 group 组件的文章内,group: group_name
对应的组件名必须是 group_name
。
group 组件的列表名优先显示文章的 short_title
其次是 title
。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 {% timeline 时间轴样式,blue %} <!-- timeline 2020-07-24 [2.6.6 -> 3.0 ](https://github.com/volantis-x/hexo-theme-volantis/releases ) --> 1. 如果有 `hexo-lazyload-image` 插件,需要删除并重新安装最新版本,设置 `lazyload.isSPA: true` 。2. 2.x 版本的 css 和 js 不适用于 3.x 版本,如果使用了 `use_cdn: true` 则需要删除。3. 2.x 版本的 fancybox 标签在 3.x 版本中被重命名为 gallery 。4. 2.x 版本的置顶 `top: true` 改为了 `pin: true` ,并且同样适用于 `layout: page` 的页面。5. 如果使用了 `hexo-offline` 插件,建议卸载,3.0 版本默认开启了 pjax 服务。<!-- endtimeline --> <!-- timeline 2020-05-15 [2.6.3 -> 2.6.6 ](https://github.com/volantis-x/hexo-theme-volantis/releases/tag/2.6.6 ) --> 不需要额外处理。 <!-- endtimeline --> <!-- timeline 2020-04-20 [2.6.2 -> 2.6.3 ](https://github.com/volantis-x/hexo-theme-volantis/releases/tag/2.6.3 ) --> 1. 全局搜索 `seotitle` 并替换为 `seo_title` 。2. group 组件的索引规则有变,使用 group 组件的文章内,`group: group_name` 对应的组件名必须是 `group_name` 。2. group 组件的列表名优先显示文章的 `short_title` 其次是 `title` 。<!-- endtimeline --> {% endtimeline %}
链接卡片 link 1 {% link 标题, 链接, 图片链接(可选) %}
1 {% link 学弟不想努力了, http://blog.renyuxin.cn, /source/img/favicon.png %}
按钮 btns Volantis
的按钮使用的是btn
和btns
标签。btns
和butterfly的button
不冲突,但是btn
会被强制渲染,导致部分参数失效,而且btn
的效果还是butterfly的button
更好看些。所以就只适配了btns
。
1 2 3 4 {% btns 样式参数 %} {% cell 标题, 链接, 图片或者图标 %} {% cell 标题, 链接, 图片或者图标 %} {% endbtns %}
圆角样式:rounded, circle
增加文字样式:可以在容器内增加 标题 和描述文字
布局方式:默认为自动宽度,适合视野内只有一两个的情况。
参数
含义
wide
宽一点的按钮
fill
填充布局,自动铺满至少一行,多了会换行
center
居中,按钮之间是固定间距
around
居中分散
grid2
等宽最多2列,屏幕变窄会适当减少列数
grid3
等宽最多3列,屏幕变窄会适当减少列数
grid4
等宽最多4列,屏幕变窄会适当减少列数
grid5
等宽最多5列,屏幕变窄会适当减少列数
如果需要显示类似「团队成员」之类的一组含有头像的链接:
或者含有图标的按钮:
圆形图标 + 标题 + 描述 + 图片 + 网格5列 + 居中
如果需要显示类似「团队成员」之类的一组含有头像的链接:1 2 3 4 5 6 7 {% btns circle grid5 %} {% cell 学弟不想努力了, http://blog.renyuxin.cn, https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/image/2023/03/blog-avatar.png %} {% cell 学弟不想努力了, http://blog.renyuxin.cn, https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/image/2023/03/blog-avatar.png %} {% cell 学弟不想努力了, http://blog.renyuxin.cn, https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/image/2023/03/blog-avatar.png %} {% cell 学弟不想努力了, http://blog.renyuxin.cn, https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/image/2023/03/blog-avatar.png %} {% cell 学弟不想努力了, http://blog.renyuxin.cn, https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/image/2023/03/blog-avatar.png %} {% endbtns %}
或者含有图标的按钮:1 2 3 4 {% btns rounded grid5 %} {% cell 下载源码, /, fas fa-download %} {% cell 查看文档, /, fas fa-book-open %} {% endbtns %}
圆形图标 + 标题 + 描述 + 图片 + 网格5列 + 居中1 2 3 4 5 6 7 8 9 10 11 12 13 14 {% btns circle center grid5 %} <a href ='https://apps.apple.com/cn/app/heart-mate-pro-hrm-utility/id1463348922?ls=1' > <i class ='fab fa-apple' > </i > <b > 心率管家</b > {% p red, 专业版 %} <img src ='https://cdn.jsdelivr.net/gh/学弟不想努力了/cdn-assets/qrcode/heartmate_pro.png' > </a > <a href ='https://apps.apple.com/cn/app/heart-mate-lite-hrm-utility/id1475747930?ls=1' > <i class ='fab fa-apple' > </i > <b > 心率管家</b > {% p green, 免费版 %} <img src ='https://cdn.jsdelivr.net/gh/学弟不想努力了/cdn-assets/qrcode/heartmate_lite.png' > </a > {% endbtns %}
github卡片 ghcard ghcard使用了github-readme-stats
的API,支持直接使用Markdown
语法来写。
1 2 {% ghcard 用户名, 其它参数(可选) %} {% ghcard 用户名/仓库, 其它参数(可选) %}
更多参数可以参考:github-readme-stats
使用,分割各个参数。写法为:参数名=参数值 以下只写几个常用参数值。
参数名
取值
释义
hide
stars,commits,prs,issues,contribs
隐藏指定统计
count_private
true
将私人项目贡献添加到总提交计数中
show_icons
true
显示图标
theme
请查阅Available Themes
主题
用户信息卡片1 2 3 4 5 | {% ghcard xaoxuu %} | {% ghcard xaoxuu, theme=vue %} | | -- | -- | | {% ghcard xaoxuu, theme=buefy %} | {% ghcard xaoxuu, theme=solarized-light %} | | {% ghcard xaoxuu, theme=onedark %} | {% ghcard xaoxuu, theme=solarized-dark %} | | {% ghcard xaoxuu, theme=algolia %} | {% ghcard xaoxuu, theme=calm %} |
仓库信息卡片1 2 3 4 5 | {% ghcard volantis-x/hexo-theme-volantis %} | {% ghcard volantis-x/hexo-theme-volantis, theme=vue %} | | -- | -- | | {% ghcard volantis-x/hexo-theme-volantis, theme=buefy %} | {% ghcard volantis-x/hexo-theme-volantis, theme=solarized-light %} | | {% ghcard volantis-x/hexo-theme-volantis, theme=onedark %} | {% ghcard volantis-x/hexo-theme-volantis, theme=solarized-dark %} | | {% ghcard volantis-x/hexo-theme-volantis, theme=algolia %} | {% ghcard volantis-x/hexo-theme-volantis, theme=calm %} |
github徽标 ghbdage
1 {% bdage [right],[left],[logo]||[color],[link],[title]||[option] %}
left
:徽标左边的信息,必选参数。
right
: 徽标右边的信息,必选参数,
logo
:徽标图标,图标名称详见simpleicons ,可选参数。
color
:徽标右边的颜色,可选参数。
link
:指向的链接,可选参数。
title
:徽标的额外信息,可选参数。主要用于优化SEO,但object
标签不会像a
标签一样在鼠标悬停显示title信息。
option
:自定义参数,支持shields.io 的全部API参数支持,具体参数可以参看上文中的拓展写法示例。形式为name1=value2&name2=value2。
基本参数,定义徽标左右文字和图标
信息参数,定义徽标右侧内容背景色,指向链接
拓展参数,支持shields的API的全部参数内容
基本参数,定义徽标左右文字和图标1 2 {% bdage Theme,Butterfly %} {% bdage Frame,Hexo,hexo %}
信息参数,定义徽标右侧内容背景色,指向链接1 2 3 {% bdage CDN,JsDelivr,jsDelivr||abcdef,https://metroui.org.ua/index.html,本站使用JsDelivr为静态资源提供CDN加速 %} // 如果是跨顺序省略可选参数,仍然需要写个逗号,用作分割 {% bdage Source,GitHub,GitHub||,https://github.com/ %}
拓展参数,支持shields的API的全部参数内容1 2 3 {% bdage Hosted,Vercel,Vercel||brightgreen,https://vercel.com/,本站采用双线部署,默认线路托管于Vercel||style=social&logoWidth=20 %} // 如果是跨顺序省略可选参数组,仍然需要写双竖线||用作分割 {% bdage Hosted,Vercel,Vercel||||style=social&logoWidth=20&logoColor=violet %}
网站卡片 sites 1 2 3 4 {% sitegroup %} {% site 标题, url=链接, screenshot=截图链接, avatar=头像链接(可选), description=描述(可选) %} {% site 标题, url=链接, screenshot=截图链接, avatar=头像链接(可选), description=描述(可选) %} {% endsitegroup %}
1 2 3 4 5 site xxx:标题名称 avatar:头像链接 description:描述文字 url:点击卡片后,访问的链接 screenshot:卡片上的缩略图链接
1 2 3 4 5 6 7 {% sitegroup %} {% site xaoxuu, url=https://xaoxuu.com, screenshot=https://i.loli.net/2020/08/21/VuSwWZ1xAeUHEBC.jpg, avatar=https://cdn.jsdelivr.net/gh/xaoxuu/cdn-assets/avatar/avatar.png, description=简约风格 %} {% site inkss, url=https://inkss.cn, screenshot=https://i.loli.net/2020/08/21/Vzbu3i8fXs6Nh5Y.jpg, avatar=https://cdn.jsdelivr.net/gh/inkss/common@master/static/web/avatar.jpg, description=这是一段关于这个网站的描述文字 %} {% site MHuiG, url=https://blog.mhuig.top, screenshot=https://i.loli.net/2020/08/22/d24zpPlhLYWX6D1.png, avatar=https://cdn.jsdelivr.net/gh/MHuiG/imgbed@master/data/p.png, description=这是一段关于这个网站的描述文字 %} {% site Colsrch, url=https://colsrch.top, screenshot=https://i.loli.net/2020/08/22/dFRWXm52OVu8qfK.png, avatar=https://cdn.jsdelivr.net/gh/Colsrch/images/Colsrch/avatar.jpg, description=这是一段关于这个网站的描述文字 %} {% site Linhk1606, url=https://linhk1606.github.io, screenshot=https://i.loli.net/2020/08/21/3PmGLCKicnfow1x.png, avatar=https://i.loli.net/2020/02/09/PN7I5RJfFtA93r2.png, description=这是一段关于这个网站的描述文字 %} {% endsitegroup %}
行内图片 inlineimage 1 {% inlineimage 图片链接, height=高度(可选) %}
这是 一段话。
这又是 一段话。
1 2 3 这是 {% inlineimage https://cdn.jsdelivr.net/gh/volantis-x/cdn-emoji/aru-l/0000.gif %} 一段话。 这又是 {% inlineimage https://cdn.jsdelivr.net/gh/volantis-x/cdn-emoji/aru-l/5150.gif, height=40px %} 一段话。
单张图片 image 1 {% image 链接, width=宽度(可选), height=高度(可选), alt=描述(可选), bg=占位颜色(可选) %}
图片宽度高度
:width=300px, height=32px
图片描述
:alt=图片描述(butterfly需要在主题配置文件中开启图片描述)
占位背景色
:bg=#f2f2f2
添加描述:
指定宽度:
指定宽度并添加描述:
设置占位背景色:
添加描述:1 {% image https://bu.dusays.com/2022/05/19/6285306c996c4.jpg, alt=愿你成为自己的太阳,无需凭借谁的光芒。 %}
指定宽度:1 {% image https://bu.dusays.com/2022/05/19/6285306c996c4.jpg, width=400px %}
指定宽度并添加描述:1 {% image https://bu.dusays.com/2022/05/19/6285306c996c4.jpg, width=400px, alt=愿你成为自己的太阳,无需凭借谁的光芒。 %}
设置占位背景色:1 {% image https://bu.dusays.com/2022/05/19/6285306c996c4.jpg, width=400px, bg=#1D0C04, alt=优化不同宽度浏览的观感 %}
aplayer本地音乐播放器 安装文档
dplayer本地音乐播放器 安装文档
音频 audio
Your browser does not support the audio tag. 1 {% audio https://github.com/volantis-x/volantis-docs/releases/download/assets/Lumia1020.mp3 %}
视频 video
对其方向
:left, center, right
列数
:逗号后面直接写列数,支持 1 ~ 4 列。
100%宽度Your browser does not support the video tag.
50%宽度Your browser does not support the video tag.
Your browser does not support the video tag.
Your browser does not support the video tag.
Your browser does not support the video tag.
25%宽度Your browser does not support the video tag.
Your browser does not support the video tag.
Your browser does not support the video tag.
Your browser does not support the video tag.
Your browser does not support the video tag.
Your browser does not support the video tag.
Your browser does not support the video tag.
Your browser does not support the video tag.
100%宽度1 {% video https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/video/other/panda-eat.mp4 %}
50%宽度1 2 3 4 5 6 {% videos, 2 %} {% video https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/video/other/panda-eat.mp4 %} {% video https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/video/other/panda-eat.mp4 %} {% video https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/video/other/panda-eat.mp4 %} {% video https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/video/other/panda-eat.mp4 %} {% endvideos %}
25%宽度1 2 3 4 5 6 7 8 9 10 {% videos, 4 %} {% video https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/video/other/panda-eat.mp4 %} {% video https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/video/other/panda-eat.mp4 %} {% video https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/video/other/panda-eat.mp4 %} {% video https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/video/other/panda-eat.mp4 %} {% video https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/video/other/panda-eat.mp4 %} {% video https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/video/other/panda-eat.mp4 %} {% video https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/video/other/panda-eat.mp4 %} {% video https://smart-blog.oss-cn-wulanchabu.aliyuncs.com/video/other/panda-eat.mp4 %} {% endvideos %}
相册 gallery Butterfly
自带gallery相册
,而且会根据图片大小自动调整排版,效果比Volantis的gallery
更好,故不再收录Volantis的gallery标签。
以下为Butterfly自带的gallery标签
写法。相册图库和相册配合使用。
allerygroup 相册图库1 2 3 4 5 <div class ="gallery-group-main" > {% galleryGroup name description link img-url %} {% galleryGroup name description link img-url %} {% galleryGroup name description link img-url %} </div >
gallery 相册1 2 3 {% gallery %} markdown 图片格式 {% endgallery %}
gallerygroup 相册图库思维拓展一下,相册图库的实质其实就是个快捷方式,可以自定义添加描述、封面、链接。那么我们未必要把它当做一个相册,完全可以作为一个链接卡片,链接到视频、QQ、友链都是不错的选择。
参数名
释义
name
图库名字
description
图库描述
link
链接到对应相册的地址
img-url
图库封面
gallery 相册区别于旧版的Gallery相册,新的Gallery相册会自动根据图片长度进行排版,书写也更加方便,与Markdown
格式一样。可根据需要插入到相应的md
。无需再自己配置长宽。建议在粘贴时故意使用长短、大小、横竖不一的图片,会有更好的效果。(尺寸完全相同的图片只会平铺输出,效果很糟糕)
图册一
留下第1个介绍
图册二
留下第2个介绍
图册三
留下第3个介绍
[{"url":"https://i.loli.net/2019/12/25/Fze9jchtnyJXMHN.jpg","alt":""},{"url":"https://i.loli.net/2019/12/25/ryLVePaqkYm4TEK.jpg","alt":""},{"url":"https://i.loli.net/2019/12/25/gEy5Zc1Ai6VuO4N.jpg","alt":""},{"url":"https://i.loli.net/2019/12/25/d6QHbytlSYO4FBG.jpg","alt":""},{"url":"https://i.loli.net/2019/12/25/6nepIJ1xTgufatZ.jpg","alt":""},{"url":"https://i.loli.net/2019/12/25/E7Jvr4eIPwUNmzq.jpg","alt":""},{"url":"https://i.loli.net/2019/12/25/mh19anwBSWIkGlH.jpg","alt":""},{"url":"https://i.loli.net/2019/12/25/2tu9JC8ewpBFagv.jpg","alt":""}]
加载更多
对于很多同学提问的gallerygroup
和gallery
相册页的链接问题。这里说下我个人的使用习惯。 一般使用相册图库的话,可以在导航栏加一个gallery
的page
(使用指令hexo new page gallery
添加),里面放相册图库作为封面。然后在[项目名]/source/gallery/
下面建立相应的文件夹,例如若按照这里的示例,若欲使用/gallery/MC/
路径访问MC相册,则需要新建[项目名]/source/gallery/MC/index.md
,并在里面填入gallery
相册内容。
gallerygroup 相册图库1 2 3 4 5 <div class ="gallery-group-main" > {% galleryGroup MC 在Rikkaの六花服务器里留下的足迹 '/gallery/MC/' https://npm.elemecdn.com/akilar-candyassets/image/1.jpg %} {% galleryGroup Gundam 哦咧哇gundam哒! '/gallery/Gundam/' https://npm.elemecdn.com/akilar-candyassets/image/20200907110508327.png %} {% galleryGroup I-am-Akilar 某种意义上也算自拍吧 '/gallery/I-am-Akilar/' https://npm.elemecdn.com/akilar-candyassets/image/20200907113116651.png %} </div >
gallery 相册1 2 3 4 5 6 7 8 9 10 {% gallery %} ![](https://i.loli.net/2019/12/25/Fze9jchtnyJXMHN.jpg ) ![](https://i.loli.net/2019/12/25/ryLVePaqkYm4TEK.jpg ) ![](https://i.loli.net/2019/12/25/gEy5Zc1Ai6VuO4N.jpg ) ![](https://i.loli.net/2019/12/25/d6QHbytlSYO4FBG.jpg ) ![](https://i.loli.net/2019/12/25/6nepIJ1xTgufatZ.jpg ) ![](https://i.loli.net/2019/12/25/E7Jvr4eIPwUNmzq.jpg ) ![](https://i.loli.net/2019/12/25/mh19anwBSWIkGlH.jpg ) ![](https://i.loli.net/2019/12/25/2tu9JC8ewpBFagv.jpg ) {% endgallery %}
折叠框 folding Butterfly
虽然也有内置折叠框hideToggle标签
,但是Volantis的folding折叠框
更好看一些。
1 2 3 {% folding 参数(可选), 标题 %} ![](https://cdn.jsdelivr.net/gh/volantis-x/cdn-wallpaper/abstract/41F215B9-261F-48B4-80B5-4E86E165259E.jpeg ) {% endfolding %}
颜色
:blue, cyan, green, yellow, red
状态
:状态填写 open 代表默认打开。
查看图片测试
查看默认打开的折叠框
查看代码测试
查看列表测试
查看嵌套测试
查看嵌套测试2 查看嵌套测试3 hahaha
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 {% folding 查看图片测试 %} ![](https://cdn.jsdelivr.net/gh/volantis-x/cdn-wallpaper/abstract/41F215B9-261F-48B4-80B5-4E86E165259E.jpeg ) {% endfolding %} {% folding cyan open, 查看默认打开的折叠框 %} 这是一个默认打开的折叠框。 {% endfolding %} {% folding green, 查看代码测试 %} 假装这里有代码块(代码块没法嵌套代码块) {% endfolding %} {% folding yellow, 查看列表测试 %} - haha- hehe{% endfolding %} {% folding red, 查看嵌套测试 %} {% folding blue, 查看嵌套测试2 %} {% folding 查看嵌套测试3 %} hahaha <span > <img src ='https://cdn.jsdelivr.net/gh/volantis-x/cdn-emoji/tieba/%E6%BB%91%E7%A8%BD.png' style ='height:24px' > </span > {% endfolding %} {% endfolding %} {% endfolding %}
数据集合 issues 1 {% issues type | api=url | group=key:value1,value2(可选) %}
type(类型):根据需求不同,会将 issues
内容解析成不同的 HTML
标签,目前支持的类型有:
时间轴timeline
: 解析成timeline标签,issue的标题对应timeline的时间,issue的内容对应timeline的内容。
网站卡片sites
: 解析成sites标签,需要有JSON代码块,各参数对应sites标签参数:
1 2 3 4 5 6 7 8 { "title": "", "screenshot": "", "url": "", "avatar": "", "description": "", "「keywords」": "" }
api(接口): url为可以调的通的API,例如:1 2 api=https://gi tee.com/api/ v5/repos/ xaoxuu/friends/i ssues?sort=updated&state=open&page=1 &per_page=100 &labels=active api=https:// api.github.com/repos/ xaoxuu/friends/i ssues?sort=updated&state=open&page=1 &per_page=100 &labels=active
参数
释义
https://gitee.com/api/v5/
gitee仓库的api
https://api.github.com/
github仓库的api
repos/xaoxuu/friends/issues
repos/用户名/仓库名/issues
sort=updated&state=open
界定哪些类型的issues会被读取过来渲染成相应的标签
page=1&per_page=100 读取前100条issues
labels=active
控制默认的issue不显示,只有自己审核通过添加了active标签之后才会显示
group(分组):sites类型的issues默认不分组,如果需要分组,可指定分组依据「keywords」,和分组白名单「value1」、「value2」等,例如:
1 2 group=version:v4,v3,v2 # 此处的version就是上文中的「keywords」
这个参数的作用就是,筛选出JSON中包含"version": "v4"
或者"version":"v3"
或者"version": "v2"
的数据,并分组显示。
仓库ISSUES模板配置 Github仓库配置方案/Gitee仓库配置方案
时间轴标签timeline渲染
网站卡片标签sites渲染
网站卡片标签sites分组渲染这是Volantis主题官网的「示例博客」页面的数据:
时间轴标签timeline渲染1 {% issues timeline | api=https://gitee.com/api/v5/repos/xaoxuu/timeline/issues?state=open&creator=xaoxuu&sort=created&direction=desc&page=1&per_page=100 %}
网站卡片标签sites渲染1 {% issues sites | api=https://gitee.com/api/v5/repos/xaoxuu/friends/issues?sort=updated&state=open&page=1&per_page=100&labels=active %}
1 {% issues sites | api=https://api.github.com/repos/xaoxuu/friends/issues?sort=updated&state=open&page=1&per_page=100&labels=active %}
网站卡片标签sites分组渲染这是Volantis主题官网的「示例博客」页面的数据:
1 {% issues sites | api=https://api.github.com/repos/volantis-x/examples/issues?sort=updated&state=open&page=1&per_page=100 | group=version:版本:^4.0,版本:^3.0,版本:^2.0 %}
诗词标签 poem 1 2 3 {% poem [title],[author] %} 诗词内容 {% endpoem %}
title
:诗词标题
author
:作者,可以不写
水调歌头
苏轼
丙辰中秋,欢饮达旦,大醉,作此篇,兼怀子由。 明月几时有?把酒问青天。 不知天上宫阙,今夕是何年? 我欲乘风归去,又恐琼楼玉宇,高处不胜寒。 起舞弄清影,何似在人间?
转朱阁,低绮户,照无眠。 不应有恨,何事长向别时圆? 人有悲欢离合,月有阴晴圆缺,此事古难全。 但愿人长久,千里共婵娟。
1 2 3 4 5 6 7 8 9 10 11 12 {% poem 水调歌头,苏轼 %} 丙辰中秋,欢饮达旦,大醉,作此篇,兼怀子由。 明月几时有?把酒问青天。 不知天上宫阙,今夕是何年? 我欲乘风归去,又恐琼楼玉宇,高处不胜寒。 起舞弄清影,何似在人间? 转朱阁,低绮户,照无眠。 不应有恨,何事长向别时圆? 人有悲欢离合,月有阴晴圆缺,此事古难全。 但愿人长久,千里共婵娟。 {% endpoem %}
阿里图标 icon
1 {% icon [icon-xxxx],[font-size] %}
icon-xxxx
:表示图标font-class,可以在自己的阿里矢量图标库项目的font-class引用方案内查询并复制。
font-size
:表示图标大小,直接填写数字即可,单位为em。图标大小默认值为1em。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 {% icon icon-rat_zi %}{% icon icon-rat,2 %} {% icon icon-ox_ chou,3 %}{% icon icon-ox,4 %}{% icon icon-tiger_yin,5 %}{% icon icon-tiger,6 %} {% icon icon-rabbit_ mao,1 %}{% icon icon-rabbit,2 %}{% icon icon-dragon_chen,3 %}{% icon icon-dragon,4 %} {% icon icon-snake_ si,5 %}{% icon icon-snake,6 %}{% icon icon-horse_wu %}{% icon icon-horse,2 %} {% icon icon-goat_ wei,3 %}{% icon icon-goat,4 %}{% icon icon-monkey_shen,5 %}{% icon icon-monkey,6 %} {% icon icon-rooster_ you %}{% icon icon-rooster,2 %}{% icon icon-dog_xu,3 %}{% icon icon-dog,4 %} {% icon icon-boar_ hai,5 %}{% icon icon-boar,6 %}
Font Awesome图标
特效标签 wow
1 2 3 {% wow [animete],[duration],[delay],[offset],[iteration] %} 内容 {% endwow %}
animate
: 动画样式,效果详见animate.css参考文档
duration
: 选填项,动画持续时间,单位可以是ms也可以是s。例如3s,700ms。
delay
: 选填项,动画开始的延迟时间,单位可以是ms也可以是s。例如3s,700ms。
offset
: 选填项,开始动画的距离(相对浏览器底部)
iteration
: 选填项,动画重复的次数注意,后面四个虽然是选填项,但是当有跨位选填时,次序不能乱。详见示例。 支持嵌套其他外挂标签。
flip动画效果。1 2 3 4 5 {% wow animate__flip %} {% note green 'fas fa-fan' modern%} `flip`动画效果。 {% endnote %} {% endwow %}
zoomIn动画效果,持续5s,延时5s,离底部100距离时启动,重复10次。1 2 3 4 5 {% wow animate__zoomIn,5s,5s,100,10 %} {% note blue 'fas fa-bullhorn' modern%} `zoomIn`动画效果,持续`5s`,延时`5s`,离底部`100`距离时启动,重复`10`次 {% endnote %} {% endwow %}
slideInRight动画效果,持续5s,延时5s。1 2 3 4 5 {% wow animate__slideInRight,5s,5s %} {% note orange 'fas fa-car' modern%} `slideInRight`动画效果,持续`5s`,延时`5s`。 {% endnote %} {% endwow %}
heartBeat动画效果,延时5s,重复10次。此处注意不用的参数位置要留空,用逗号间隔。1 2 3 4 5 {% wow animate__heartBeat,,5s,,10 %} {% note red 'fas fa-battery-half' modern%} `heartBeat`动画效果,延时`5s`,重复`10`次。 {% endnote %} {% endwow %}
进度条 progress
1 {% progress [width] [color] [text] %}
width
: 0到100的阿拉伯数字
color
: 颜色,取值有red,yellow,green,cyan,blue,gray
text
:进度条上的文字内容
1 2 3 4 5 6 {% progress 10 red 进度条样式预览 %} {% progress 30 yellow 进度条样式预览 %} {% progress 50 green 进度条样式预览 %} {% progress 70 cyan 进度条样式预览 %} {% progress 90 blue 进度条样式预览 %} {% progress 100 gray 进度条样式预览 %}
气泡注释 bubble 1 {% bubble [content] , [notation] ,[background-color] %}
content
: 注释词汇
notation
: 悬停显示的注解内容
background-color
: 可选,气泡背景色。默认为“#71a4e3”
最近我学到了不少新玩意儿(虽然对很多大佬来说这些已经是旧技术了),比如CSS的兄弟相邻选择器 例如 h1 + p {margin-top:50px;} </span>,flex布局 Flex 是 Flexible Box 的缩写,意为弹性布局”,用来为盒状模型提供最大的灵活性” </span>,transform变换 transform 属性向元素应用 2D 或 3D 转换。该属性允许我们对元素进行旋转、缩放、移动或倾斜。 </span>,animation的贝塞尔速度曲线 贝塞尔曲线(Bézier curve),又称贝兹曲线或贝济埃曲线,是应用于二维图形应用程序的数学曲线。一般的矢量图形软件通过它来精确画出曲线,贝兹曲线由线段与节点组成,节点是可拖动的支点,线段像可伸缩的皮筋 </span>写法,还有今天刚看到的clip-path clip-path属性使用裁剪方式创建元素的可显示区域。区域内的部分显示,区域外的隐藏。 </span>属性。这些对我来说很新颖的概念狠狠的冲击着我以前积累起来的设计思路。
1 最近我学到了不少新玩意儿(虽然对很多大佬来说这些已经是旧技术了),比如CSS的{% bubble 兄弟相邻选择器,"例如 h1 + p {margin-top:50px;}" %},{% bubble flex布局,"Flex 是 Flexible Box 的缩写,意为"弹性布局",用来为盒状模型提供最大的灵活性","#ec5830" %},{% bubble transform变换,"transform 属性向元素应用 2D 或 3D 转换。该属性允许我们对元素进行旋转、缩放、移动或倾斜。","#1db675" %},animation的{% bubble 贝塞尔速度曲线,"贝塞尔曲线(Bézier curve),又称贝兹曲线或贝济埃曲线,是应用于二维图形应用程序的数学曲线。一般的矢量图形软件通过它来精确画出曲线,贝兹曲线由线段与节点组成,节点是可拖动的支点,线段像可伸缩的皮筋","#de4489" %}写法,还有今天刚看到的{% bubble clip-path,"clip-path属性使用裁剪方式创建元素的可显示区域。区域内的部分显示,区域外的隐藏。","#868fd7" %}属性。这些对我来说很新颖的概念狠狠的冲击着我以前积累起来的设计思路。
引用文献 reference 1 2 {% referto [id] , [literature] %} {% referfrom [id] , [literature] , [url] %}
考虑到锚点跳转的特性,不建议您将引用出处标签referfrom
写在常隐外挂标签(如folding、tab、hideToggle)中,这样能有效避免跳转失败。
referto 引用上标id
: 上标序号内容,需与referfrom标签的id对应才能实现跳转literature
: 引用的参考文献名称
referfrom 引用出处id
: 序号内容,需与referto标签的id对应才能实现跳转literature
: 引用的参考文献名称url
: 引用的参考文献链接,可省略
学弟不想努力了(renyuxin.cn)是一个私人性质的博客</span>[1] 学弟不想努力了群聊简介 参考资料 </span></span>,从各类教程至生活点滴,无话不谈。建群的目的是提供一个闲聊的场所。博客采用Hexo框架</span>[2] Hexo中文文档 参考资料 </span></span>,Butterfly主题</span>[3] Butterfly 安装文档(一) 快速开始 参考资料 </span></span>
本项目参考了Volantis</span>[4] hexo-theme-volantis 标签插件 参考资料 </span></span>的标签样式。引入[tag].js
,并针对butterfly
主题修改了相应的[tag].styl
。在此鸣谢Volantis
主题众开发者。 主要参考内容包括各个volantis的内置标签插件文档</span>[5] Volantis文档:内置标签插件 参考资料 </span></span> Butterfly主题的各个衍生魔改</span>[6] Butterfly 安装文档:标签外挂(Tag Plugins 参考资料 </span></span></span>[7] 小弋の生活馆全样式预览 参考资料 </span></span></span>[8] l-lin-font-awesome-animation 参考资料 </span></span></span>[9] 小康的butterfly主题使用文档 参考资料 </span></span>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 学弟不想努力了(renyuxin.cn)是一个私人性质的博客{% referto '[1]','学弟不想努力了群聊简介' %},从各类教程至生活点滴,无话不谈。建群的目的是提供一个闲聊的场所。博客采用Hexo框架{% referto '[2]','Hexo中文文档' %},Butterfly主题{% referto '[3]','Butterfly 安装文档(一) 快速开始' %} 本项目参考了Volantis{% referto '[4]','hexo-theme-volantis 标签插件' %}的标签样式。引入`[tag].js` ,并针对`butterfly` 主题修改了相应的`[tag].styl` 。在此鸣谢`Volantis` 主题众开发者。 主要参考内容包括各个volantis的内置标签插件文档{% referto '[5]','Volantis文档:内置标签插件' %} Butterfly主题的各个衍生魔改{% referto '[6]','Butterfly 安装文档:标签外挂(Tag Plugins' %}{% referto '[7]','小弋の生活馆全样式预览' %}{% referto '[8]','l-lin-font-awesome-animation' %}{% referto '[9]','小康的butterfly主题使用文档' %} {% referfrom '[1]','学弟不想努力了博客主页,’http://blog.renyuxin.cn' %} {% referfrom '[2]','Hexo中文文档','https://hexo.io/zh-cn/docs/' %} {% referfrom '[3]','Butterfly 安装文档(一) 快速开始','https://butterfly.js.org/posts/21cfbf15/' %} {% referfrom '[4]','hexo-theme-volantis 标签插件','https://volantis.js.org/v5/tag-plugins/' %} {% referfrom '[5]','Volantis文档:内置标签插件','https://volantis.js.org/tag-plugins/' %} {% referfrom '[6]','Butterfly 安装文档:标签外挂(Tag Plugins','https://butterfly.js.org/posts/4aa8abbe/#%E6%A8%99%E7%B1%A4%E5%A4%96%E6%8E%9B%EF%BC%88Tag-Plugins%EF%BC%89' %} {% referfrom '[7]','小弋の生活馆全样式预览','https://lovelijunyi.gitee.io/posts/c898.html' %} {% referfrom '[8]','l-lin-font-awesome-animation','https://github.com/l-lin/font-awesome-animation' %} {% referfrom '[9]','小康的butterfly主题使用文档','https://www.antmoe.com/posts/3b43914f/' %}
旋转相册 carousel 旋转相册标签
与fancybox灯箱
存在兼容性bug,若发现旋转相册呈扁平状,请关闭fancybox
或换用medium_zoom
。
1 2 3 4 5 {% carousel [Id] , [name] %} ![](/img/1.jpg ) ![](/img/2.jpg ) ![](/img/3,jpg ) {% endcarousel %}
Id
: 相册唯一ID,用于监测相册鼠标动作。禁止使用中文。同一页内不得出现相同ID的carousel相册。name
: 相册中间显示的内容,建议用英文单引号包裹。
1 2 3 4 5 6 7 8 9 10 11 12 {% carousel 'SF','strike freedom' %} ![](https://npm.elemecdn.com/akilar-candyassets/image/20200907110444226.png ) ![](https://npm.elemecdn.com/akilar-candyassets/image/20200907110508327.png ) ![](https://npm.elemecdn.com/akilar-candyassets/image/20200907110525753.png ) ![](https://npm.elemecdn.com/akilar-candyassets/image/20200907110600751.png ) ![](https://npm.elemecdn.com/akilar-candyassets/image/20200907110621554.png ) ![](https://npm.elemecdn.com/akilar-candyassets/image/20200907110637459.png ) ![](https://npm.elemecdn.com/akilar-candyassets/image/20200907110654150.png ) ![](https://npm.elemecdn.com/akilar-candyassets/image/20200907110707916.png ) ![](https://npm.elemecdn.com/akilar-candyassets/image/20200907110719787.png ) ![](https://npm.elemecdn.com/akilar-candyassets/image/20200907110731118.png ) {% endcarousel %}
emoji表情