-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 1.03 KB
/
index.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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>链接工具</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>转换链接</h1>
<textarea id="inputLinks" placeholder="在此粘贴原始链接,每行一个"></textarea>
<button onclick="convertLinks()">转换链接</button>
<textarea id="outputLinks" readonly></textarea>
<button onclick="copyOutput()">复制结果</button>
</div>
<div class="container">
<h1>获取链接</h1>
<textarea id="inputUrl" placeholder="在此粘贴链接"></textarea>
<button onclick="extractFileInfo()">获取链接信息</button>
<div id="linkInfo" style="margin-top: 10px;"></div>
</div>
<div id="loadingIndicator" style="display: none;">
<div class="spinner"></div>
</div>
<script src="script.js"></script>
</body>
</html>