Hexo博客Next主题添加动态标题显示在浏览器标签中

直接在hexo\node_modules\hexo-theme-next\layout\_layout.njk​文件中添加如下代码:

1
2
3
4
5
6
<script type="text/javascript">
var OriginTitile=document.title,st;
document.addEventListener("visibilitychange",function(){
document.hidden?(document.title="ヽ(●-`Д´-)ノ别走啊!",clearTimeout(st)):(document.title="(Ő∀Ő3)ノ来了啊!",st=setTimeout(function(){document.title=OriginTitile},3e3))
})
</script>

【推荐,防止更新主题重置】或者修改主题的config.yml,去掉head前面的#

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Define custom file paths.
# Create your custom files in site directory `source/_data` and uncomment needed files below.
# 在网站目录“source/_data”中创建您的自定义文件,并取消下面所需文件的注释。
custom_file_path:
head: source/_data/head.njk
#header: source/_data/header.njk
sidebar: source/_data/sidebar.njk
#postMeta: source/_data/post-meta.njk
#postBodyStart: source/_data/post-body-start.njk
#postBodyEnd: source/_data/post-body-end.njk
footer: source/_data/footer.njk
#bodyEnd: source/_data/body-end.njk
#variable: source/_data/variables.styl
#mixin: source/_data/mixins.styl
style: source/_data/styles.styl

新建文件source/_data/head.njk,在文件中添加如下内容:

1
2
3
4
5
<script type="text/javascript">
var OriginTitile=document.title,st;
document.addEventListener("visibilitychange",function(){ document.hidden?(document.title="ヽ(●-`Д´-)ノ别走啊!",clearTimeout(st)):(document.title="(Ő∀Ő3)ノ来了啊!",st=setTimeout(function(){document.title=OriginTitile},3e3))
})
</script>

参考

hexo+github搭建博客(超级详细版,精细入微) - 个人文章 - SegmentFault 思否