效果如该网站右下角所示。
方法:
具体步骤如下
添加实现代码
在/themes/next/layout/ _custom/ 路径下新建cube-hollow.swig文件
添加如下内容
1 | <style> |
其中照片要放自己的呀!
调用
下面就是在个人主页中调用小魔方辽
-
在 /themes/next/layout/_custom/custom.swig 文件中引入新建的文件
1
2
3
4
5
6
7
8<!-- 旋转魔方 -->
{% if theme.cube.enable %}
{% if theme.cube.type == "mini" %}
{% include 'cube-mini.swig' %}
{% elseif theme.cube.type == "hollow" %}
{% include 'cube-hollow.swig' %}
{% endif %}
{% endif %} -
如果 custom.swig 文件不存在,需要手动新建并在布局页面中 body 末尾引入:
1
2
3
4
5
6
7
8themes\next\layout\_layout.swig ...
{% include '_third-party/exturl.swig' %}
{% include '_third-party/bookmark.swig' %}
{% include '_third-party/copy-code.swig' %}
+ {% include '_custom/custom.swig' %}
</body>
</html> -
在主题next中的 _config.yml 中新添加以下动态配置项
1
2
3cube:
enable: true
type: hollow # mini | hollow -
隐藏原来的箭头,注释_layout.swig如下部分
完成! hexo g -d 即可!