You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.4 KiB
HTML

2 years ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SARS-CoV-2 Visualization</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<template id="controls-template">
<div>
<div class="controls hidden">
<div class="normalize">
normalize by:
<input class="all" type="radio" name="normalize" value="all">all counts</input>
<input class="to-date" type="radio" name="normalize" value="toDate" checked="checked">counts to date</input>
</div>
<div class="playback">
<button class="play">play</button>
</div>
</div>
<div class="display">
<div class="main-display"></div>
</div>
</div>
</template>
2 years ago
<div id="header">
<h1>COVID-19 Case Map</h1>
2 years ago
</div>
<div id="content"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.7.0/d3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/3.0.2/topojson.min.js"></script>
<script src="choropleth.js"></script>
<script src="fetch.js"></script>
<script src="parse.js"></script>
<script src="data-covid.js"></script>
<script src="data-features.js"></script>
<script src="data-metadata.js"></script>
<script src="progress.js"></script>
<script src="covid-choropleth.js"></script>
<script src="ui.js"></script>
2 years ago
<script src="script.js"></script>
</body>
</html>