-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
267 lines (232 loc) · 13.8 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
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>阿秀的学习笔记</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="icon" href="./icon.ico">
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/gitalk/dist/gitalk.css">
<!-- Adsense 资源投放 -->
<script data-ad-client="ca-pub-1890271224952559" async src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/js/adsbygoogle.js"></script>
<!-- 谷歌站点收录 -->
<meta name="google-site-verification" content="qTFCf1hJ275saQ7H1kin5t2DVpznBKAj0Gi50XMOVMo" />
<!-- 百度站点收录-->
<meta name="baidu-site-verification" content="SZyWUIzWiU" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/css/theme-simple.css">
<style>
/*html, body { height:100%; overflow:auto; }*/
html,body{ overflow-y:scroll;}
html,body{ overflow:scroll; min-height:101%;}
html{ overflow:-moz-scrollbars-vertical;}
.advertisement {
position: absolute;
right: 1px;
top: 70px;
width: 200px;
/*box-shadow: -1px 0 0px 0px #fff;*/
padding: 0.5px;
z-index: 99;
/* background-color: #fff;*/
text-align: center;
}
.advertisement p,
h4 {
margin: 0;
padding: 0;
}
.advertisement .Tencent_code h4 {
font-size: 14px;
color: #25a46a;
margin-bottom: 1px;
}
</style>
</head>
<body>
<div id="app">Loading.....</div>
<div class="aside_container" >
<div class="advertisement">
<div id="advertisementShow" style="display: none">
<div style="float: left; width: 20%; margin: 40% 0">
<button id="interviewBtn" onclick="showAdverseMent()">
隐<br>藏
</button>
</div>
<div style="float: left;width: 80%">
<p style="font-size: 12px;color:red">欢迎加入计算机百人求职(吹水闲聊)交流群,麻烦备注"求职”,谢谢~</p>
<img src="./Doc/Picture/阿秀三号纯微信.jpg" alt="拓跋阿秀" />
</div>
</div>
<div id="advertisementNone" style="float: right;width: 15%; display: block">
<button id="interviewBtn2" onclick="displayAdverseMent()">
求<br>职<br>面<br>试<br>交<br>流<br>群
</button>
</div>
</div>
</div>
<script>
function showAdverseMent() {
advertisementShow.style.display = "none";
advertisementNone.style.display = "block";
}
function displayAdverseMent() {
advertisementNone.style.display = "none";
advertisementShow.style.display = "block";
}
window.$docsify = {
themeColor: '#fb5555',
name: '📔 阿秀的求职笔记',
repo: 'https://github.com/forthespada/InterviewGuide',
coverpage: true, // 设置封面
onlyCover: true, // 只显示封面
loadSidebar: true, // 设置侧边栏
subMaxLevel: 6, //侧边栏显示当前页面的目录(标题)
loadNavbar: true, // 设置导航栏
externalLinkTarget: '_blank', //外链打开方式:_blank表示在新标签页中打开
// 完整配置参数
search: {
placeholder: '搜索', // 搜索提示框文字, 支持本地化,例子在下面
noData: '😒 找不到结果',
depth: 6, // 搜索标题的最大程级, 1 - 6
maxAge: 86400000, // 过期时间,单位毫秒,默认一天
},
<!-- <span style="font-size:14px"><br>👀本站总访问量:<span id="busuanzi_value_site_pv"></span> 次</span><span style="font-size:14px"><span id="busuanzi_container_site_uv" >| 🚴♂️ 本站总访客数:<span id="busuanzi_value_site_uv"></span> 人 </span></span> -->
footer: {
copy: '<span id="sitetime" style="font-size:14px"></span><br/><span style="font-size:14px">Copyright © 2021.05.20 - 至今</span>',
auth: ' <a href="https://mp.weixin.qq.com/s/gRw25aRFBVB0lUhBAJqV5g" target="_blank" style="font-size:14px">🏷️ <strong>阿秀</strong> </a> <span style="font-size:14px"> 你只管努力,剩下的交给时间就好,我就是活生生的例子💖!</span>',
pre: '<hr/>',
style: 'text-align: left;',
}//添加页脚
}
</script>
<!-- 引入搜索模块 -->
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/js/search.min.js"></script>
<!-- 添加页脚 -->
<script src="https://cdn.jsdelivr.net/gh/wugenqiang/NoteBook@master/plugin/docsify-footer-enh.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/js/docsify.js"></script>
<!-- 字数统计功能 -->
<script src="//unpkg.com/docsify-count/dist/countable.js"></script>
<!-- 图片缩小方法-->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/zoom-image.min.js"></script>
<!-- 添加一键拷贝代码-->
<script src="//unpkg.com/docsify-copy-code"></script></script>
<!-- 代码块样式优化
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-c.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-cpp.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-css.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-docker.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-java.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-javascript.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-json.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-latex.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-sql.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-markdown.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-bash.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-php.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-scala.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-nginx.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-json.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-markdown.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-python.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/js/prism-yaml.js"></script>
<script src="https://cdn.jsdelivr.net/gh/wugenqiang/StaticRepo/src/js/prism-go.js"></script>
<script src="https://cdn.jsdelivr.net/gh/wugenqiang/StaticRepo/src/js/prism-matlab.js"></script>
-->
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-c.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-cpp.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-css.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-docker.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-java.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-javascript.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-json.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-latex.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-sql.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-markdown.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-bash.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-php.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-scala.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-nginx.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-json.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-markdown.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/prism-python.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/js/prism-yaml.js"></script>
<script src="https://cdn.jsdelivr.net/gh/wugenqiang/StaticRepo/src/js/prism-go.js"></script>
<script src="https://cdn.jsdelivr.net/gh/wugenqiang/StaticRepo/src/js/prism-matlab.js"></script>
<!-- 回到顶部功能 -->
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/jquery.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/jquery.goup.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$.goup({
trigger: 700,
bottomOffset: 20,
locationOffset: 8,
title: '回到顶部',
titleAsText: true
});
});
</script>
<!-- mouse click -->
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/click_heart.js"></script>
<!-- 添加网站运行时间统计 -->
<script language=javascript>
function siteTime() {
window.setTimeout("siteTime()", 1000);
var seconds = 1000;
var minutes = seconds * 60;
var hours = minutes * 60;
var days = hours * 24;
var years = days * 365;
var today = new Date();
var todayYear = today.getFullYear();
var todayMonth = today.getMonth() + 1;
var todayDate = today.getDate();
var todayHour = today.getHours();
var todayMinute = today.getMinutes();
var todaySecond = today.getSeconds();
/* Date.UTC() -- 返回date对象距世界标准时间(UTC)1970年1月1日午夜之间的毫秒数(时间戳)
year - 作为date对象的年份,为4位年份值
month - 0-11之间的整数,做为date对象的月份
day - 1-31之间的整数,做为date对象的天数
hours - 0(午夜24点)-23之间的整数,做为date对象的小时数
minutes - 0-59之间的整数,做为date对象的分钟数
seconds - 0-59之间的整数,做为date对象的秒数
microseconds - 0-999之间的整数,做为date对象的毫秒数 */
var t1 = Date.UTC(2021, 05, 20, 00, 00, 00); //北京时间2021-05-20
var t2 = Date.UTC(todayYear, todayMonth, todayDate, todayHour, todayMinute, todaySecond);
var diff = t2 - t1;
var diffYears = Math.floor(diff / years);
var diffDays = Math.floor((diff / days) - diffYears * 365);
var diffHours = Math.floor((diff - (diffYears * 365 + diffDays) * days) / hours);
var diffMinutes = Math.floor((diff - (diffYears * 365 + diffDays) * days - diffHours * hours) / minutes);
var diffSeconds = Math.floor((diff - (diffYears * 365 + diffDays) * days - diffHours * hours - diffMinutes * minutes) / seconds);
document.getElementById("sitetime").innerHTML = " 阿秀的小破站已安全运行 " + diffYears + " 年 " + diffDays + " 天 " + diffHours + " 小时 " + diffMinutes + " 分 " + diffSeconds + " 秒 ";
}
siteTime();
</script>
<!-- 访问量统计
<script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
-->
<script async src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/js/busuanzi.pure.mini.js"></script>
<!-- 引入 gitalk留言功能
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/css/gitalk.css">
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/js/gitalk.js"></script>
<script src="https://cdn.jsdelivr.net/gh/forthespada/forthespada.github.io@master/plugin/js/gitalk.min.js"></script>
-->
<!--
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/gitalk.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/gitalk/dist/gitalk.min.js"></script>
<script>
const gitalk = new Gitalk({
clientID: '92fd7527468c795ed514',
clientSecret: '0c7679aa9abd263b8c63f01408b42e501745d184',
repo: 'forthespada.github.io',
owner: 'forthespada',
admin: ['forthespada'], // 如果仓库有多个人可以操作,那么在这里以数组形式写出
id: location.pathname, // 用于标记评论是哪个页面的
})
</script>
-->
</body>
</html>