2019-nCoV 全國(guó)新型肺炎疫情每日動(dòng)態(tài)趨勢(shì)可視圖
傳染源: 野生動(dòng)物,可能為中華菊頭蝠
病毒: 新型冠狀病毒 2019-nCoV
傳播途徑: 經(jīng)呼吸道飛沫傳播,亦可通過(guò)接觸傳播
易感人群: 人群普遍易感。老年人及有基礎(chǔ)疾病者感染后病情較重,兒童及嬰幼兒也有發(fā)病
潛伏期: 一般為 3~7 天,最長(zhǎng)不超過(guò) 14 天,潛伏期內(nèi)存在傳染性

(信息來(lái)源:丁香園·丁香醫(yī)生 2020年1月29日)
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>全國(guó)新型肺炎疫情每日動(dòng)態(tài)</title>
<script src="https://cdn.bootcss.com/echarts/4.4.0-rc.1/echarts.min.js"></script>
<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js"></script>
<style>
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
#dataFrom {
font-size: 14px;
text-align: right;
margin-right: 40px;
}
#main {
width: 100%;
height: calc(100% - 30px);
}
</style>
</head>
<body>
<div id="main"></div>
<div id="dataFrom">(數(shù)據(jù)來(lái)源:<a rel="external nofollow"
target="_blank">中華人民共和國(guó)國(guó)家衛(wèi)生健康委員會(huì)</a>)</div>
<script type="text/javascript">
var myChart = echarts.init(document.getElementById('main'));
var dataSource = [];
$.ajaxSettings.async = false;
$.getJSON("../Json/data.json?" + Date.parse(new Date()), function (data) {
dataSource = data;
})
option = {
title: {
text: '全國(guó)新型肺炎疫情每日動(dòng)態(tài)',
x: 'center',
y: 'bottom',
},
legend: {},
tooltip: {},
dataset: {
dimensions: ['日期', '確診', '疑似', '重癥', '死亡', '治愈', '確認(rèn)+疑似', '新增(疑似+確認(rèn))', '觀察中'],
source: dataSource,
},
xAxis: { type: 'category' },
yAxis: {},
series: [
{ type: 'bar' },
{ type: 'bar' },
{ type: 'bar' },
{ type: 'bar' },
{ type: 'bar' },
{
type: 'line',
label: {
normal: {
show: true,
position: 'top',
}
}
},
{
type: 'line',
label: {
normal: {
show: true,
position: 'top',
}
}
},
{
type: 'line',
label: {
normal: {
show: true,
position: 'top',
}
}
}
]
};
myChart.setOption(option);
window.onresize = () => this.myChart.resize();
</script>
</body>
</html>
圖表查看地址:
https://jackiezheng.github.io/2019-nCoV/web/index.html
Github地址:
https://github.com/JackieZheng/2019-nCoV
總結(jié)
以上所述是小編給大家介紹的2019-nCoV 全國(guó)新型肺炎疫情每日動(dòng)態(tài)趨勢(shì)可視圖,希望對(duì)大家有所幫助!
相關(guān)文章
關(guān)于GBK與UTF-8互轉(zhuǎn)亂碼問(wèn)題解讀
GBK與UTF-8互轉(zhuǎn)亂碼問(wèn)題,是因?yàn)榫幋a和解碼方式不一致導(dǎo)致的,UTF-8編碼的字符在GBK中解碼可能會(huì)出現(xiàn)亂碼,而GBK編碼的字符在UTF-8中解碼則通??梢赃€原,ISO-8859-1編碼是單字節(jié)編碼,可以保證亂碼字符串的還原2025-02-02
VSCode遠(yuǎn)程連接其他主機(jī)的WSL2的問(wèn)題
這篇文章主要介紹了VSCode遠(yuǎn)程連接其他主機(jī)的WSL2的問(wèn)題,在 Windows 10 上開(kāi)啟 SSH Server 服務(wù),設(shè)置 SSH 連接使用的默認(rèn) Shell,本文給大家介紹的非常詳細(xì),需要的朋友參考下吧2021-07-07
vscode通過(guò)Remote SSH遠(yuǎn)程連接及離線配置的方法
這篇文章主要介紹了vscode通過(guò)Remote SSH遠(yuǎn)程連接及離線配置的方法,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2021-03-03
深入理解TCP協(xié)議與UDP協(xié)議的原理及區(qū)別
網(wǎng)絡(luò)編程有三個(gè)要素,分別是IP地址、端口號(hào)和通信協(xié)議,那本文主要講述的是TCP與UDP這兩種通信協(xié)議,以及編程的實(shí)現(xiàn),感興趣的可以了解一下2021-06-06

