-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
342 lines (315 loc) · 13.2 KB
/
index.html
File metadata and controls
342 lines (315 loc) · 13.2 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FromSoftwareSaveManager - FS社游戏存档管理工具</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<style>
:root {
--primary-color: rgba(108, 92, 231, 0.85);
--secondary-color: rgba(162, 155, 254, 0.75);
--dark-color: #1a1a2e;
--light-color: rgba(245, 246, 250, 0.9);
--glass-blur: 20px;
--transition-speed: 0.4s;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Poppins', 'Noto Sans SC', 'Segoe UI', sans-serif;
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
url('https://img.3dmgame.com/uploads/images/news/20220315/1647330392_914189.jpg') no-repeat center center fixed;
background-size: cover;
color: var(--light-color);
min-height: 100vh;
line-height: 1.6;
}
.hero {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
backdrop-filter: blur(var(--glass-blur));
-webkit-backdrop-filter: blur(var(--glass-blur));
color: white;
padding: 6rem 0;
margin-bottom: 4rem;
border-radius: 0 0 30px 30px;
border: 1px solid rgba(255, 255, 255, 0.25);
box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
transition: all var(--transition-speed) ease;
}
.feature-card {
background: rgba(255, 255, 255, 0.25);
backdrop-filter: blur(var(--glass-blur));
-webkit-backdrop-filter: blur(var(--glass-blur));
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 20px;
box-shadow: 0 12px 40px rgba(31, 38, 135, 0.2);
transition: all var(--transition-speed) ease;
margin-bottom: 2rem;
overflow: hidden;
color: #fff;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.feature-card:hover {
background: rgba(255, 255, 255, 0.35);
transform: translateY(-10px) scale(1.02);
}
.feature-icon {
font-size: 2.5rem;
color: #fff;
margin-bottom: 1rem;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
#features h2 {
color: #fff;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
#features .text-muted {
color: rgba(255, 255, 255, 0.7) !important;
}
.feature-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.2),
transparent
);
transition: 0.5s;
}
.feature-card:hover::before {
left: 100%;
}
.btn {
transition: all var(--transition-speed) ease;
border-radius: 50px;
padding: 0.75rem 1.75rem;
font-weight: 600;
letter-spacing: 0.5px;
}
.btn-primary {
background: var(--primary-color);
border: none;
position: relative;
overflow: hidden;
}
.btn-primary::after {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(
transparent,
rgba(255, 255, 255, 0.3),
transparent
);
transform: rotate(30deg);
transition: all 0.6s ease;
}
.btn-primary:hover::after {
left: 100%;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
section {
animation: fadeInUp 0.8s ease forwards;
}
.screenshot {
border-radius: 15px;
border: 1px solid rgba(255, 255, 255, 0.25);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
transition: all var(--transition-speed) ease;
transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1);
}
.screenshot:hover {
transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1.05, 1.05, 1.05);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
footer {
background: rgba(0, 0, 0, 0.7) !important;
backdrop-filter: blur(var(--glass-blur));
-webkit-backdrop-filter: blur(var(--glass-blur));
border-top: 1px solid rgba(255, 255, 255, 0.15);
padding: 2rem 0;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="#">
<i class="bi bi-controller me-2"></i>FromSoftwareSaveManager
</a>
<div class="d-flex">
<a href="https://github.com/Kleistr/FromSoftwareSaveManager" class="btn btn-outline-light me-2">
<i class="bi bi-github"></i> GitHub
</a>
<a href="https://github.com/Kleistr/FromSoftwareSaveManager/releases" class="btn btn-primary">
<i class="bi bi-download"></i> 下载
</a>
</div>
</div>
</nav>
<section class="hero text-center">
<div class="container">
<h1 class="display-4 fw-bold mb-4">FS社游戏存档管理工具</h1>
<p class="lead mb-4">一个基于 PyQt6 的存档管理工具,专门用于管理 FromSoftware 游戏的存档文件</p>
<div class="d-flex justify-content-center gap-3">
<a href="#features" class="btn btn-light btn-lg px-4">
<i class="bi bi-list-check"></i> 功能特性
</a>
<a href="#download" class="btn btn-outline-light btn-lg px-4">
<i class="bi bi-download"></i> 立即下载
</a>
</div>
</div>
</section>
<section id="features" class="container py-5">
<div class="text-center mb-5">
<h2 class="fw-bold">功能特性</h2>
<p class="text-muted">专为FromSoftware游戏设计的存档管理解决方案</p>
</div>
<div class="row">
<div class="col-md-4">
<div class="feature-card card h-100 p-4">
<div class="feature-icon">
<i class="bi bi-save"></i>
</div>
<h4>存档备份与恢复</h4>
<p>轻松备份和恢复游戏存档,防止进度丢失</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-card card h-100 p-4">
<div class="feature-icon">
<i class="bi bi-clock-history"></i>
</div>
<h4>多版本管理</h4>
<p>支持多个存档版本管理,随时回退到任意时间点</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-card card h-100 p-4">
<div class="feature-icon">
<i class="bi bi-tags"></i>
</div>
<h4>自定义备注</h4>
<p>为存档添加自定义备注(如"某boss房前"),方便识别</p>
</div>
</div>
</div>
</section>
<section class="bg-light py-5">
<div class="container">
<div class="text-center mb-5">
<h2 class="fw-bold">界面截图</h2>
<p class="text-muted">直观易用的图形界面</p>
</div>
<div class="row">
<div class="col-md-4">
<img src="screenShot/screenshot_er.png" alt="艾尔登法环存档管理" class="img-fluid screenshot">
</div>
<div class="col-md-4">
<img src="screenShot/screenshot_ds3.png" alt="黑暗之魂3存档管理" class="img-fluid screenshot">
</div>
<div class="col-md-4">
<img src="screenShot/screenshot_addothergames.png" alt="添加其他游戏" class="img-fluid screenshot">
</div>
</div>
</div>
</section>
<section id="download" class="container py-5">
<div class="row align-items-center">
<div class="col-md-6">
<h2 class="fw-bold mb-4">立即下载</h2>
<p class="lead mb-4">选择适合你的安装方式</p>
<div class="d-flex flex-column gap-3">
<a href="https://github.com/Kleistr/FromSoftwareSaveManager/releases" class="btn btn-primary btn-lg">
<i class="bi bi-windows"></i> 下载Windows版
</a>
<div class="card p-3">
<h5>从源代码运行</h5>
<div class="bg-dark text-light p-3 rounded mb-2">
<code class="d-block mb-1">git clone https://github.com/Kleistr/FromSoftwareSaveManager.git</code>
<code class="d-block">pip install -r requirements.txt</code>
</div>
<a href="#requirements" class="btn btn-outline-primary">查看系统需求</a>
</div>
</div>
</div>
<div class="col-md-6">
<img src="screenShot/screenshot_er.png" alt="程序界面" class="img-fluid rounded">
</div>
</div>
</section>
<section id="requirements" class="bg-light py-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 text-center">
<h2 class="fw-bold mb-4">系统需求</h2>
<div class="row">
<div class="col-md-6 mb-4">
<div class="card h-100 p-4">
<h4><i class="bi bi-pc-display me-2"></i>Windows</h4>
<p>直接下载exe文件即可运行</p>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="card h-100 p-4">
<h4><i class="bi bi-code-square me-2"></i>源代码运行</h4>
<ul class="list-unstyled">
<li>Python 3.8或更高版本</li>
<li>PyQt6</li>
<li>qt_material</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="bg-dark text-white py-4">
<div class="container text-center">
<p class="mb-2">
<a href="https://996.icu" class="text-white me-3"><i class="bi bi-link-45deg"></i> 996.ICU</a>
<a href="https://github.com/996icu/996.ICU/blob/master/LICENSE" class="text-white"><i class="bi bi-shield-lock"></i> Anti 996 License</a>
</p>
<p class="mb-0">© 2023 FromSoftwareSaveManager. 保留所有权利。</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;700&display=swap" rel="stylesheet">
<section class="hero text-center">
<div class="container">
<h1 class="display-3 fw-bold mb-4">FromSoftware 存档管理器</h1>
<p class="lead mb-5 fs-4">专为魂系游戏设计的专业存档管理解决方案</p>
<div class="d-flex justify-content-center gap-4">
<a href="#download" class="btn btn-primary btn-lg px-5 py-3">
<i class="bi bi-download me-2"></i> 立即下载
</a>
<a href="#features" class="btn btn-outline-light btn-lg px-5 py-3">
<i class="bi bi-stars me-2"></i> 功能亮点
</a>
</div>
</div>
</section>