-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
32 lines (30 loc) · 1.12 KB
/
offline.html
File metadata and controls
32 lines (30 loc) · 1.12 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8"/>
<title>离线小工具</title>
<script defer src="/assets/js/back-to-home.js"></script>
<link rel="stylesheet" href="assets/css/offline.css">
</head>
<body>
<div class="container">
<h2>离线小工具</h2>
<div class="desc">点击文件名在浏览器中打开,点击“下载”可保存到本地。</div>
<div class="file-grid" id="fileGrid">
<div class="file" data-href="离线小工具/sv_歌词-粘贴所选音符歌词(保留-+,按字符隔开).js">
<div class="icon">🎵</div>
<div class="meta">
<div class="filename">sv_歌词-粘贴所选音符歌词(保留-+,按字符隔开).js</div>
<div class="type">Synthesizer V 脚本</div>
</div>
<div class="actions">
<a class="btn" href="离线小工具/sv_歌词-粘贴所选音符歌词(保留-+,按字符隔开).js" download>下载</a>
</div>
</div>
</div>
<div class="footer">
<a href="index.html">返回首页</a>
</div>
</div>
</body>
</html>