You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.0 KiB
68 lines
2.0 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<style type="text/css">
|
|
body{background: url(D:/SQL/ky1.jpg) no-repeat center 0;
|
|
background-size: 100%};
|
|
font{color="darkgray"};
|
|
tr{height:60px}
|
|
</style>
|
|
<style type="text/css">
|
|
body{background: url(D:/SQL/ky1.jpg) no-repeat center 0;
|
|
background-size: 100%};
|
|
font{color="darkgray"};
|
|
tr{height:60px}
|
|
</style>
|
|
<title>武汉市疫情数据查询</title>
|
|
</head>
|
|
<body>
|
|
<marquee>武汉加油!湖北加油!中国加油!世界加油!!</marquee>
|
|
<body style="background-image:D:\SQL\WIN_20190628_00_29_16_Pro">
|
|
<body style="background-color:lightgoldenrodyellow">
|
|
<div align="center">
|
|
<h1>武汉市疫情数据</h1>
|
|
<table width="800px" border="1" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td>日期</td>
|
|
<td>区名</td>
|
|
<td>确诊</td>
|
|
<td>疑似</td>
|
|
<td>死亡</td>
|
|
</tr>
|
|
{% for area in areadata_list %}
|
|
<tr>
|
|
<td>{{ area. time}}</td>
|
|
<td>{{ area. areaname}}</td>
|
|
<td>{{ area.confirmed }}</td>
|
|
<td>{{ area. suspected}}</td>
|
|
<td>{{ area. death}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
<br>
|
|
<br>
|
|
查询各区具体数据
|
|
<br>
|
|
<style>
|
|
.button1 {
|
|
-webkit-transition-duration: 0.4s;
|
|
transition-duration: 0.4s;
|
|
padding: 16px 32px;
|
|
text-align: center;
|
|
background-color: wheat;
|
|
color: black;
|
|
border: 2px solid #4CAF50;
|
|
border-radius:5px;
|
|
}
|
|
.button1:hover {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
}
|
|
</style>
|
|
<a href="jianghan"><button class="button1" >江汉区</button></a>
|
|
<a href="wuchang"><button class="button1" >武昌区</button></a>
|
|
<a href="qiaokou"><button class="button1" >硚口区</button></a>
|
|
</div>
|
|
</body>
|
|
</html> |