-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
52 lines (52 loc) · 1.24 KB
/
popup.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cryptocurrency Market Cap</title>
<!-- 引入 Bootstrap CSS -->
<link href="bootstrap.min.css" rel="stylesheet">
<script src="popup.js"></script>
</head>
<style>
.coin-logo {
width: 28px;
margin-right: 5px;
float: left;
}
.coin-names {
}
.sub-name {
color: #616161;
font-size: 12px;
}
.threshold {
width: 100px;
}
.thresholdForm {
display: inline-block;
min-width: 30px;
}
</style>
<body style="font-size: 13px;">
<div class="container mt-3">
时间:<span id="time"></span>
<table id="cryptoTable" class="table table-striped table-bordered">
<thead>
<tr>
<th class="sort" style="min-width: 45px;cursor: pointer" data-sort="rank">排行</th>
<th style="min-width: 120px;">名称</th>
<th>价格</th>
<th>市值</th>
<th>量 (24h)</th>
<th class="asc" style="cursor: pointer" data-sort="changePercent24Hr">变化 (24h)</th>
<th>价格监控</th>
</tr>
</thead>
<tbody>
<!-- 数据将在这里动态插入 -->
</tbody>
</table>
</div>
</body>
</html>