Skip to content
#

hexo

Here are 2,545 public repositories matching this topic...

hexo-theme-next
JiangJiangJiang98
JiangJiangJiang98 commented Oct 18, 2019

Issue Checklist

Steps to reproduce the behavior

  1. cd themes/next
  2. git clone https://github.com/theme-next/theme-next-pace source/lib/pace
  3. 修改主题配置文件(_config)
# Progress bar in the top during page loading.
# Dependencies: https://github.com/theme-next/theme-next-pace
# For more information: https://github.com/HubSpot/pace
pace:
  enable: true
  # Themes list:
wencaistorm
wencaistorm commented Dec 25, 2017

我想自定义网页 title ,知道是这段代码,但是没找到代码位置。

var OriginTitile = document.title, titleTime;
document.addEventListener('visibilitychange', function() {
	if (document.hidden) {
		document.title = '死鬼去哪里了!';
		clearTimeout(titleTime);
	} else {
		document.title = '(つェ⊂)咦!又好了!';
		titleTime = setTimeout(function() {
			document.title = OriginTitile;
		},2000);
	}
});
elucidator7
elucidator7 commented Nov 30, 2019

「描述遇到的问题」或「发现的 bug」(Describe the problem or bug you encounter)

首先表示,特别喜欢这个主题,很简洁漂亮~
在_config.yml文件中avatar: /avatar/me.jpg并且再目录下放置了图片文件
但是在hexo g后始终无法生成自己设置的文件,反而一直生成的是Misaka.jpg这个图片文件
请问是怎么回事呢

你是否已经阅读过以下内容,并确认你的行为是正确的,在 [ ] 中填入 x 选中(Ensure that you had consulted followings and confirm the validity of your operation, fill x in [ ] to select)

  • [Hexo 文档 | Hexo document]

Improve this page

Add a description, image, and links to the hexo topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the hexo topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.