-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (62 loc) · 2.49 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Noto+Sans+TC:400,700&display=swap&subset=chinese-traditional" />
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/dt/jq-3.3.1/dt-1.10.20/r-2.2.3/datatables.min.css" />
<link rel="stylesheet" href="./index.min.css" />
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript" src="https://unpkg.com/country-flag-emoji@latest/dist/country-flag-emoji.umd.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/v/dt/jq-3.3.1/dt-1.10.20/r-2.2.3/datatables.min.js"></script>
<script type="text/javascript" src="./location.min.js" defer></script>
<script type="text/javascript" src="./script.min.js" defer></script>
<title>2019 冠狀病毒肺炎 (武漢肺炎) 病例分佈</title>
</head>
<body>
<h1 class="wrap">2019 冠狀病毒肺炎 (武漢肺炎) 病例分佈</h1>
<hr />
<div class="wrap" id="update"> </div>
<div class="wrap">
<div class="outer" style="width: 85%;">
<table id="table" class="display">
<thead>
<tr>
<th>地區</th>
<th>確診人數</th>
<th>死亡人數</th>
</tr>
</thead>
<tbody id="tbody" />
<tfoot>
<tr>
<th>總人數</th>
<th class="right" id="confirm">0</th>
<th class="right" id="dead">0</th>
</tr>
</tfoot>
</table>
</div>
</div>
<br />
<div class="wrap">
<div class="outer" id="world" />
</div>
<div class="wrap">
<div class="outer" id="china" />
</div>
<div class="wrap">
<div class="outer" id="hk" />
</div>
<div class="wrap">
<div class="outer" id="mo" />
</div>
<div class="wrap">
<div class="outer" id="sg" />
</div>
<hr />
資料來源: <a href="https://ncov.dxy.cn/ncovh5/view/pneumonia" target="_blank">丁香園</a> (中國內地) / <a href="https://zh.wikipedia.org/wiki/2019%E5%86%A0%E7%8B%80%E7%97%85%E6%AF%92%E7%97%85%E7%96%AB%E6%83%85" target="_blank">維基百科</a> (其他地區)
<br />
Copyright © 2020 by <a href="https://www.github.com/huikaihoo/" target="_blank">Simon Hui</a>
<br />
<br />
</body>
</html>