Hexo小标题旋转风车设置
操作
找到主题配置文件_config.butterfly.yml
把
beautify
的title-prefix-icon
处修改为:'\f863'
(如果没有开启图标功能则需要将
enable
设置为true
)1
2
3beautify:
enable: true
title-prefix-icon: '\f863'在
inject
的head
处引入以下文件:1
2
3inject:
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>"
重新部署,启动,就可以看到效果啦。
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 懒猫!
评论