Hexo小标题旋转风车设置

2022-02-16 15:31:25 浏览数 (1)

前言

如果不喜欢Butterfly主题自带的曲别针图标,可以换一种口味。(比如我现在使用的旋转风车

教程链接:https://weilining.cf/70.html

操作

找到主题配置文件_config.butterfly.yml

把beautify的title-prefix-icon处修改为:'f863'

(如果没有开启图标功能则需要将enable设置为true)

代码语言:javascript复制
beautify:
  enable: true
  title-prefix-icon: 'f863'
在inject的head处引入以下文件:
代码语言:javascript复制
inject:
  head:
    - "<style>#article-container.post-content h1:before, h2:before, h3:before, h4:before, h5:before, h6:before { -webkit-animation: avatar_turn_around 1s linear infinite; -moz-animation: avatar_turn_around 1s linear infinite; -o-animation: avatar_turn_around 1s linear infinite; -ms-animation: avatar_turn_around 1s linear infinite; animation: avatar_turn_around 1s linear infinite; }</style>"

重新部署,启动,就可以看到效果啦。

结尾

慢慢的博客就不一样了。

0 人点赞