Skip to content

Commit 79751bb

Browse files
author
dusahoxiong
committed
refactor:重构文档结构
1 parent fbf16e5 commit 79751bb

File tree

4 files changed

+166
-136
lines changed

4 files changed

+166
-136
lines changed

_coverpage.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
# JVMStudy
3+
4+
> 📚📚📚JVM底层原理解析
5+
6+
- 类加载子系统
7+
8+
- 运行时数据区
9+
10+
- 执行引擎
11+
12+
- 垃圾回收机制
13+
14+
- 性能优化与调优
15+
16+
- 高效并发
17+
18+
[GitHub](https://github.com/shaoxiongdu/JVMStudy)
19+
[快速开始](/?id=一、思维导图)

docs/README.md

Lines changed: 0 additions & 136 deletions
This file was deleted.

index.html

Lines changed: 139 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
5+
<meta charset="UTF-8">
6+
<title>JVM底层原理解析</title>
7+
8+
<!--谷歌合作-->
9+
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8324309950813311"
10+
crossorigin="anonymous"></script>
11+
12+
13+
<!--关键字爬虫-->
14+
<link rel="canonical" href="http://www.shaoxiongdu.cn">
15+
<meta name="keywords" content="JVM,jvm,JVM底层,JVM底层原理解析,jvm底层,java,Java,编程,Java底层原理,JVM面试,jvm面试,Java面试,java面试"/>
16+
<meta name="description" content="JVM底层原理解析 + 面试知识点整理"/>
17+
<meta name="renderer" content="webkit">
18+
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
19+
20+
<script src="//unpkg.com/docsify-count/dist/countable.js"></script>
21+
22+
<script src="//unpkg.com/docsify-count/dist/countable.js"></script>
23+
24+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
25+
<meta name="description" content="Description">
26+
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
27+
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
28+
</head>
29+
<body>
30+
<div id="app">
31+
<nav>
32+
<a target="_blank" href="https://shaoxiongdu.cn">作者博客</a>
33+
<a href="/#thePublic.md">更多开源项目</a>
34+
<a href="/">JVM底层原理解析</a>
35+
</nav>
36+
</div>
37+
<script>
38+
window.$docsify = {
39+
formatUpdated: '{MM}/{DD} {HH}:{mm}',
40+
mergeNavbar: true,
41+
maxLevel: 3,
42+
coverpage: true,
43+
auto2top: true,
44+
loadNavbar: true,
45+
subMaxLevel: 2,
46+
name: 'JVM底层原理解析',
47+
repo: 'https://github.com/shaoxiongdu/JVMStudy',
48+
nameLink: 'https://github.com/shaoxiongdu/JVMStudy',
49+
plugins: [
50+
51+
],
52+
count:{
53+
countable:true,
54+
fontsize:'0.9em',
55+
color:'rgb(90,90,90)',
56+
language:'chinese'
57+
}
58+
}
59+
</script>
60+
<!-- Docsify v4 -->
61+
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
62+
63+
<!--百度统计-->
64+
<script>
65+
var _hmt = _hmt || [];
66+
(function() {
67+
var hm = document.createElement("script");
68+
hm.src = "https://hm.baidu.com/hm.js?04ba0e8482eff8142a693068f4156910";
69+
var s = document.getElementsByTagName("script")[0];
70+
s.parentNode.insertBefore(hm, s);
71+
})();
72+
</script>
73+
74+
<!--/* 鼠标点击特效 */-->
75+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
76+
<script type="text/javascript">
77+
jQuery(document).ready(function($) {
78+
$("body").click(function(e) {
79+
//随机选择文字
80+
var clickWord = [
81+
"富强",
82+
"民主",
83+
"文明",
84+
"和谐",
85+
"自由",
86+
"平等",
87+
"公正",
88+
"法治",
89+
"爱国",
90+
"敬业",
91+
"诚信",
92+
"友善",
93+
]
94+
95+
var a_idx = Math.floor((Math.random() * clickWord.length));
96+
// 随机产生文字颜色
97+
var color1 = Math.floor((Math.random() * 255));
98+
var color2 = Math.floor((Math.random() * 255));
99+
var color3 = Math.floor((Math.random() * 255));
100+
101+
a_idx = (a_idx + 1) % clickWord.length;
102+
var $i = $(`<span/>`).text(clickWord[a_idx]);
103+
104+
var x = e.pageX,
105+
y = e.pageY;
106+
$i.css({      //文字样式--------------------------
107+
"z-index": 9999999999999 ,
108+
"top": y - 20,
109+
"left": x,
110+
"position": "absolute",
111+
"font-family":"mmm",
112+
"fontSize":Math.floor((Math.random() * 22)+15),
113+
"font-weight": "bold",
114+
"color": "rgb("+color1+","+color2+","+color3+")",
115+
"-webkit-user-select":"none",
116+
"-moz-user-select":"none",
117+
"-ms-user-select":"none",
118+
"user-select":"none",
119+
});
120+
$("body").append($i);
121+
$i.animate({
122+
"top": y - 200, //点击后文字上升高度
123+
"opacity": 0 //透明度
124+
},
125+
1500, //文字消失时间
126+
function() {
127+
$i.remove();
128+
});
129+
});
130+
});
131+
132+
</script>
133+
134+
<!--代码复制-->
135+
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code/dist/docsify-copy-code.min.js"></script>
136+
137+
<!---->
138+
</body>
139+
</html>

thePublic.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#### 安利一波我们的公众号:【挖掘开源的价值】
2+
3+
每天都会分享一些好玩,有趣,又沙雕的开源项目。或者是比较实用的开发工具。
4+
5+
### 我们的目标是:【分享好玩的项目,挖掘开源的价值】。
6+
7+
> ![Github推荐](https://gitee.com/ShaoxiongDu/imageBed/raw/master/image-20210820144130666.png)
8+

0 commit comments

Comments
 (0)