-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (80 loc) · 2.92 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/themes/dark.css">
<style>
.head{
position: fixed;
top: 0;
margin: 0;
height: 50px;
width: 100%;
background-color: #2B2B2B;
z-index: 1;
}
.sidebar{
top:52px !important;
}
.menutItem{
color: wheat;
font-size: 22px;
text-align: center;
line-height: 50px;
display: inline-block;
margin-inline: 10px;
min-width: 80px;
cursor:pointer;
}
</style>
</head>
<body>
<div class="head">
<div class="menutItem"></div>
<div class="menutItem">
<span onclick="location='#'">首页</span>
</div>
</div>
<div id="app"></div>
<script>
if (typeof navigator.serviceWorker !== 'undefined') {
navigator.serviceWorker.register('sw.js')
}
window.$docsify = {
name: '',
repo: '',
// loadNavbar: true,
notFoundPage:true,
search: {
maxAge: 86400000, // 过期时间,单位毫秒,默认一天
paths: ['/Git相关/Git用户名错误.md','/css相关/选择器.md','/css相关/问题.md','/js相关/API总结.md','/js相关/es6机翻.md','/js相关/js中的iterator.md','/js相关/js技巧终结.md','/js相关/vuex笔记.md','/js相关/webWorker.md','/js相关/各种js包.md','/js相关/提纲.md','/js相关/监听Dom和属性.md','/README.md','/_404.md','/unity/Csharp知识点.md','/unity/UIToolKit.md','/unity/unity学习时积累.md','/unity/包说明.md','/unity/插件mirror的使用.md','/unity/搭建一个目录树.md','/unity/往窗口中拖文件/README.md','/读书笔记/影响力.md'], // or 'auto'
placeholder: '请输入关键词',
noData: '找不到结果!',
// 搜索标题的最大层级, 1 - 6
depth: 2,
hideOtherSidebarContent: false, // 是否隐藏其他侧边栏内容
// 避免搜索索引冲突
// 同一域下的多个网站之间
namespace: 'website-1',
auto2top: true,
pagination: {
previousText: '上一章节',
nextText: '下一章节',
}
// 您可以提供一个正则表达式来匹配前缀。在这种情况下,
// 匹配到的字符串将被用来识别索引
//pathNamespaces: /^(\/(zh-cn|ru-ru))?(\/(v1|v2))?/
}
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code"></script>
</body>
</html>