Hexo标题旋转风车
Table of Contents
前言
这个特效是看到了别人的博客之后学到的,很不错,可以看看原文 Hexo小标题旋转风车设置
为了以后自己换电脑的话方便找,所以做一些记录
设置旋转风车
打开主题配置文件,查找 beautify 并且修改为如下代码
1
2
3
| beautify:
enable: true
title-prefix-icon: '\f863'
|
并且在 inject 的 head 处引入文件
1
2
3
| 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>"
|