1、开启站内搜索
安装插件
1 2
| npm install hexo-generator-search npm install hexo-generator-searchdb
|
配置hexo站点主配置文件_config.yml,在文件末尾添加
1 2 3 4 5
| search: path: search.xml field: post format: html limit: 10000
|
修改next主题配置文件_config.yml,启用 local_search
2、添加背景图片
1 2 3 4 5 6 7 8
| body { background-image: url(/img/bg.png); background-repeat: repeat; background-attachment: fixed; background-position: 100% 100%; background-size: repeat; }
|
3、更改鼠标样式
1 2 3 4 5 6 7 8 9 10
| * { cursor: url(/img/Arrow.cur),auto; } :active { // cursor: url(/img/Hand.cur),auto } :link { cursor: url(/img/Hand.cur),auto }
|