-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
183 lines (176 loc) · 5.39 KB
/
Copy pathindex.html
File metadata and controls
183 lines (176 loc) · 5.39 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>developer-once</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="stylesheet"
href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"
/>
<style>
.sidebar .sidebar-nav {
margin-left: 15px;
}
/* ------ 侧边栏右侧展示 ------ */
.sidebar {
margin-left: 20px;
}
.markdown-section {
padding: 30px 100px 40px 15px;
}
.app-sub-sidebar {
width: 160px;
position: fixed;
top: 100px;
right: 50px;
background: #fff;
}
.sidebar ul {
margin: 10px 0 0 20px;
}
.sidebar > h1 a {
font-weight: bold;
}
.sidebar ul li {
font-weight: bold;
}
.sidebar ul li a {
font-weight: normal;
}
.sidebar-nav > ul > li > ul > li.active {
position: relative;
background-color: #e6f7ff;
display: block;
box-shadow: inset -8px -4px 0px -4px #52abff;
}
.sidebar-nav > ul > li > ul > li > a:active {
position: relative;
background-color: #e6f7ff;
display: block;
box-shadow: inset -8px -4px 0px -4px #52abff;
}
.app-sub-sidebar::before {
position: absolute;
top: -35px;
left: 0;
width: 100%;
display: block;
margin-left: 15px;
content: "本文目录";
font-weight: bold;
}
.app-sub-sidebar li.active {
box-shadow: inset 8px -4px 0px -4px #52abff;
background-color: #fff;
}
.markdown-section {
padding: 30px 140px 240px 15px;
}
.app-name-link {
pointer-events: none;
}
.markdown-section h1,
.markdown-section h2,
.markdown-section h3,
.markdown-section h4,
.markdown-section strong {
font-weight: 700;
}
.parent-active {
position: relative;
background-color: #e6f7ff;
display: block;
box-shadow: inset -8px -4px 0px -4px #52abff;
}
</style>
</head>
<body>
<div id="app">D-One 解决项目从新建到发布的全流程平台</div>
<!-- eagle-eye - 三方CDN资源速度不稳定 -->
<script crossorigin="anonymous" src="https://cdn.jsdelivr.net/npm/@developer-once/eagle-eye@1.0.2/lib/eagle-eye.js"></script>
<script>
var config = {
// url: 'http://localhost:7001/api/report',
// config: 'http://localhost:7001/api/get/config',
https: true,
record: true,
app_key: "b1f7d65ec4250defdc80ac",
autoSendPv: true,
recordReSoure: false,
startTime: new Date().getTime(),
globalClick: true,
openHeartbeat: false,
slowAjaxCost: 700,
behaviorMax: 5,
};
window.monitor = eagleEye(config);
</script>
<!-- AD plugin -->
<script src="//cdn.jsdelivr.net/npm/docsify-plugin-carbon@1/index.js"></script>
<script>
window.$docsify = {
loadSidebar: true,
// alias: {
// '/*/_sidebar.md': '/_sidebar.md'
// },
// 侧边栏目录的最大层级
subMaxLevel: 2,
// 切换页面后是否自动跳转到页面顶部。
auto2top: true,
basePath: "/",
name: "D-one",
repo: "",
// ------- search --------
search: {
// 过期时间,单位毫秒,默认一天
maxAge: 86400000,
paths: "auto",
placeholder: "搜索",
noData: "找不到结果",
// 搜索标题的最大层级, 1 - 6
depth: 3,
// 是否隐藏其他侧边栏内容
hideOtherSidebarContent: false,
},
// ------- AD -------
plugins: [
// DocsifyCarbon.create('CEBI6KQE', 'docsifyjsorg'),
// function(hook, vm) {
// hook.afterEach(function(html) {
// if (vm.route.path === '/') {
// return html;
// }
// return (
// html +
// '<br/> <i>Vercel</i> has given us a Pro account <br/> <a href="https://vercel.com/?utm_source=docsifyjsdocs" target="_blank"><img src="https://cdn.jsdelivr.net/gh/docsifyjs/docsify/docs/_media/vercel_logo.svg" alt="Vercel" width="100" height="64"></a>'
// );
// });
// },
// ------------ Footer ------------
function (hook) {
var footer = [
"<hr/>",
"<footer>",
'<div style="text-align: center;">Released under the MIT License.</div>',
'<div style="text-align: center;">Copyright © 2022 <a href="https://github.com/MriLiuJY">Buyu</a> </div>',
"</footer>",
].join("");
hook.afterEach(function (html) {
return html + footer;
});
},
],
};
</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/prismjs@1/components/prism-bash.min.js"></script>
</body>
</html>