-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.19 KB
/
Copy pathindex.html
File metadata and controls
38 lines (38 loc) · 1.19 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>给你的.txt</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/desktop.css">
<link rel="stylesheet" href="css/chat.css">
<link rel="stylesheet" href="css/diary.css">
<link rel="stylesheet" href="css/photo.css">
<link rel="stylesheet" href="css/draft.css">
<link rel="stylesheet" href="css/transitions.css">
</head>
<body>
<div id="desktop">
<div id="usb-icon" class="desktop-icon">
<div class="icon-image">💾</div>
<span class="icon-label">旧U盘</span>
</div>
</div>
<div id="file-manager" class="hidden">
<div class="fm-titlebar">
<span>旧U盘 (E:)</span>
<button id="fm-close" class="fm-btn">×</button>
</div>
<div class="fm-body">
<div class="fm-sidebar">
<ul id="folder-list"></ul>
</div>
<div id="fm-content" class="fm-main"></div>
</div>
</div>
<div id="chapter-container" class="hidden"></div>
<div id="transition-overlay" class="hidden"></div>
<script type="module" src="js/main.js"></script>
</body>
</html>