-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidepanel.html
More file actions
34 lines (31 loc) · 988 Bytes
/
Copy pathsidepanel.html
File metadata and controls
34 lines (31 loc) · 988 Bytes
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
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>划线解释器</title>
<link rel="stylesheet" href="sidepanel.css">
</head>
<body>
<header class="topbar">
<div>
<h1>划线解释器</h1>
<p id="statusText">等待选中文本</p>
</div>
<button id="settingsButton" class="icon-button" title="设置" aria-label="设置">⚙</button>
</header>
<main>
<section id="latestView" class="latest empty">
<p>选中网页里的术语后点击“解释”,结果会出现在这里。</p>
</section>
<section class="history-section">
<div class="section-head">
<h2>历史</h2>
<button id="clearButton">清空</button>
</div>
<div id="historyList" class="history-list"></div>
</section>
</main>
<script src="sidepanel.js"></script>
</body>
</html>