This repository was archived by the owner on Apr 25, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate-log.html
More file actions
425 lines (373 loc) · 14 KB
/
update-log.html
File metadata and controls
425 lines (373 loc) · 14 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
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>更新日志 - ForgetURL</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
:root {
--primary-color: #3498db;
--secondary-color: #2980b9;
--text-color: #333;
--light-bg: #f8f9fa;
--dark-bg: #2c3e50;
}
body {
color: var(--text-color);
line-height: 1.6;
overflow-x: hidden;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* 导航栏 */
header {
background-color: white;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
}
.logo {
font-size: 24px;
font-weight: bold;
color: var(--primary-color);
text-decoration: none;
}
.nav-links {
display: flex;
gap: 30px;
}
.nav-links a {
text-decoration: none;
color: var(--text-color);
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover {
color: var(--primary-color);
}
.nav-links a.active {
color: var(--primary-color);
}
.login-btn {
background-color: var(--primary-color);
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
font-weight: 500;
transition: background-color 0.3s;
}
.login-btn:hover {
background-color: var(--secondary-color);
}
/* 主要内容区 */
.content {
margin-top: 120px;
padding: 40px 0;
min-height: calc(100vh - 280px);
}
.page-title {
font-size: 2rem;
color: var(--dark-bg);
margin-bottom: 40px;
text-align: center;
}
/* 更新日志内容 */
.timeline {
position: relative;
max-width: 800px;
margin: 0 auto;
}
.timeline::after {
content: '';
position: absolute;
width: 4px;
background-color: var(--primary-color);
top: 0;
bottom: 0;
left: 50%;
margin-left: -2px;
}
.version-container {
padding: 10px 40px;
position: relative;
background-color: inherit;
width: 50%;
margin-bottom: 30px;
}
.version-container.left {
left: 0;
}
.version-container.right {
left: 50%;
}
.version-container::after {
content: '';
position: absolute;
width: 20px;
height: 20px;
right: -10px;
background-color: white;
border: 4px solid var(--primary-color);
top: 15px;
border-radius: 50%;
z-index: 1;
}
.version-container.right::after {
left: -10px;
}
.version-content {
padding: 20px;
background-color: white;
position: relative;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.version-date {
color: var(--primary-color);
font-weight: bold;
margin-bottom: 5px;
}
.version-title {
font-size: 1.3rem;
margin-bottom: 15px;
color: var(--dark-bg);
}
.update-list {
list-style-type: none;
margin-bottom: 0;
}
.update-list li {
margin-bottom: 10px;
position: relative;
padding-left: 25px;
}
.update-list li::before {
content: "✓";
color: var(--primary-color);
position: absolute;
left: 0;
}
.tag {
display: inline-block;
padding: 3px 8px;
border-radius: 4px;
font-size: 0.8rem;
margin-right: 5px;
color: white;
font-weight: bold;
}
.tag.new {
background-color: #2ecc71;
}
.tag.improved {
background-color: #f39c12;
}
.tag.fixed {
background-color: #e74c3c;
}
/* 页脚 */
footer {
background-color: var(--dark-bg);
color: white;
padding: 40px 0;
text-align: center;
}
.copyright {
margin-top: 20px;
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.7);
}
/* 回到顶部按钮 */
.back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: var(--primary-color);
color: white;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
opacity: 0;
transition: opacity 0.3s;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
z-index: 999;
}
.back-to-top.visible {
opacity: 1;
}
/* 响应式设计 */
@media (max-width: 768px) {
.nav-links {
display: none;
}
.timeline::after {
left: 31px;
}
.version-container {
width: 100%;
padding-left: 70px;
padding-right: 25px;
}
.version-container.right {
left: 0%;
}
.version-container.left::after, .version-container.right::after {
left: 21px;
}
}
</style>
</head>
<body>
<!-- 导航栏 -->
<header>
<div class="container">
<nav>
<a href="index.html" class="logo">ForgetURL</a>
<div class="nav-links">
<a href="index.html">首页</a>
<a href="update-log.html" class="active">更新日志</a>
<a href="feedback.html">问题反馈</a>
<a href="help-docs.html">帮助文档</a>
</div>
<button class="login-btn">登录</button>
</nav>
</div>
</header>
<!-- 主要内容区 -->
<section class="content">
<div class="container">
<h1 class="page-title">📝 ForgetURL 产品更新日志</h1>
<div class="timeline">
<!-- 版本 3.2.0 -->
<div class="version-container left">
<div class="version-content">
<div class="version-date">2023年12月18日</div>
<h2 class="version-title">版本 3.2.0</h2>
<ul class="update-list">
<li><span class="tag new">新功能</span> 引入AI智能摘要生成器,一键提取页面核心内容</li>
<li><span class="tag improved">优化</span> 提升搜索引擎响应速度,搜索结果加载时间缩短50%</li>
<li><span class="tag new">新功能</span> 增加WebDAV同步支持,可与第三方网盘无缝协作</li>
<li><span class="tag fixed">修复</span> 解决iOS端偶发的同步失败问题</li>
</ul>
</div>
</div>
<!-- 版本 3.1.0 -->
<div class="version-container right">
<div class="version-content">
<div class="version-date">2023年10月5日</div>
<h2 class="version-title">版本 3.1.0</h2>
<ul class="update-list">
<li><span class="tag new">新功能</span> 全新协作空间上线,支持多人实时编辑</li>
<li><span class="tag improved">优化</span> 书签树形结构优化,支持无限嵌套子目录</li>
<li><span class="tag new">新功能</span> 新增页面快照存档功能,防止链接失效</li>
<li><span class="tag fixed">修复</span> 修复批量导入浏览器书签时的分类错误</li>
</ul>
</div>
</div>
<!-- 版本 3.0.0 -->
<div class="version-container left">
<div class="version-content">
<div class="version-date">2023年8月12日</div>
<h2 class="version-title">版本 3.0.0 - 里程碑更新</h2>
<ul class="update-list">
<li><span class="tag new">新平台</span> 全平台客户端发布,支持Windows/macOS/iOS/Android</li>
<li><span class="tag new">新功能</span> 增强子链接功能上线,实现多维度资源关联</li>
<li><span class="tag new">新功能</span> 三维检索引擎上线,实现秒级海量书签定位</li>
<li><span class="tag improved">优化</span> 全新UI设计,提升用户体验与操作流畅度</li>
<li><span class="tag improved">优化</span> 用户权限系统重构,支持更细粒度的访问控制</li>
</ul>
</div>
</div>
<!-- 版本 2.5.0 -->
<div class="version-container right">
<div class="version-content">
<div class="version-date">2023年5月30日</div>
<h2 class="version-title">版本 2.5.0</h2>
<ul class="update-list">
<li><span class="tag new">新功能</span> 添加标签系统,支持自定义分类与多标签绑定</li>
<li><span class="tag improved">优化</span> 离线模式改进,支持更多离线浏览功能</li>
<li><span class="tag fixed">修复</span> 解决大型知识库导出时的性能问题</li>
</ul>
</div>
</div>
<!-- 版本 2.0.0 -->
<div class="version-container left">
<div class="version-content">
<div class="version-date">2023年2月15日</div>
<h2 class="version-title">版本 2.0.0</h2>
<ul class="update-list">
<li><span class="tag new">新功能</span> 推出云同步功能,数据无缝跨设备迁移</li>
<li><span class="tag new">新功能</span> 首次引入分享功能,支持公开/私密链接生成</li>
<li><span class="tag improved">优化</span> 存储引擎升级,支持百万级书签无压力</li>
</ul>
</div>
</div>
<!-- 版本 1.0.0 -->
<div class="version-container right">
<div class="version-content">
<div class="version-date">2022年11月1日</div>
<h2 class="version-title">版本 1.0.0 - 首次发布</h2>
<ul class="update-list">
<li><span class="tag new">新产品</span> ForgetURL核心功能发布</li>
<li><span class="tag new">新功能</span> 基础书签管理系统上线</li>
<li><span class="tag new">新功能</span> 简单搜索与浏览器书签导入功能</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- 页脚 -->
<footer>
<div class="container">
<p>网站版权归 @forgeturl</p>
<p class="copyright">ICP备案号: 待定</p>
</div>
</footer>
<!-- 回到顶部按钮 -->
<div class="back-to-top">↑</div>
<script>
// 回到顶部按钮的显示和隐藏
window.addEventListener('scroll', function() {
const backToTopBtn = document.querySelector('.back-to-top');
const scrollHeight = window.pageYOffset || document.documentElement.scrollTop;
// 当滚动超过视口高度时显示按钮
if (scrollHeight > window.innerHeight / 2) {
backToTopBtn.classList.add('visible');
} else {
backToTopBtn.classList.remove('visible');
}
});
// 点击回到顶部
document.querySelector('.back-to-top').addEventListener('click', function() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
</script>
</body>
</html>