-
Notifications
You must be signed in to change notification settings - Fork 5
/
timeLine.html
105 lines (95 loc) · 3.05 KB
/
timeLine.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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>时间线</title>
<link rel="stylesheet" href="./timeLine.css">
</head>
<body>
<ul class="time-line">
<li class="tl-header">
<h2>2020年01月</h2>
</li>
<ul class="tl-body">
<li>
<span>11日</span>
<h3>
<a href="https://nowtime.cc/software/834.html" target="_blank">ffmpeg 使用方法合集</a>
</h3>
</li>
</ul>
<li class="tl-header">
<h2>2019年12月</h2>
</li>
<ul class="tl-body"><li>
<span>08日</span>
<h3>
<a href="https://nowtime.cc/html5/827.html" target="_blank">CSS3 动画卡顿性能优化解决方案</a>
</h3>
</li>
<li>
<span>07日</span>
<h3>
<a href="https://nowtime.cc/android/824.html" target="_blank">Android 加了电话权限,运行还是闪退报错</a>
</h3>
</li>
</ul>
<li class="tl-header">
<h2>2019年11日</h2>
</li>
<ul class="tl-body"><li>
<span>23日</span>
<h3>
<a href="https://nowtime.cc/java/819.html" target="_blank">Java 创建子线程,使它立即开始执行</a>
</h3>
</li>
<li>
<span>20日</span>
<h3>
<a href="https://nowtime.cc/js/817.html" target="_blank">JavaScript 遍历 document.querySelectorAll()</a>
</h3>
</li>
<li>
<span>08日</span>
<h3>
<a href="https://nowtime.cc/java/815.html" target="_blank">Java 中的标号:outer 的作用</a>
</h3>
</li>
<li>
<span>08日</span>
<h3>
<a href="https://nowtime.cc/chat/814.html" target="_blank">[官方]国内 Android Studio 下载地址</a>
</h3>
</li>
</ul>
<li class="tl-header">
<h2>2019年10月</h2>
</li>
<ul class="tl-body">
<li>
<span>25日</span>
<h3>
<a href="https://nowtime.cc/linux/812.html" target="_blank">[简单体验]QQ for Linux 于 2019-10-24 更新</a>
</h3>
</li>
<li>
<span>22日</span>
<h3>
<a href="https://nowtime.cc/js/804.html" target="_blank">JavaScript 随机产生不重复的数字思路(递归法)</a>
</h3>
</li>
<li>
<span>20日</span>
<h3>
<a href="https://nowtime.cc/software/802.html" target="_blank">AutoCAD 学生版</a>
</h3>
</li>
</ul>
<li class="tl-header start">
<h2>开始</h2>
</li>
</ul>
<!--如果你想要使用 JavaScript 进行渲染,请将下行代码取消注释即可-->
<!--<script src="./timeLine.js"></script>-->
</body>
</html>