mirror of https://github.com/dirtbags/moth.git
54 lines
1.0 KiB
HTML
54 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Scoreboard</title>
|
|
<link rel="stylesheet" href="basic.css" type="text/css">
|
|
<meta name="viewport" content="width=device-width">
|
|
<link rel="icon" href="images/luna-moth.svg" type="image/svg+xml">
|
|
<link rel="icon" href="images/luna-moth.png" type="image/png">
|
|
<style>
|
|
#info {
|
|
max-width: 20em;
|
|
position: absolute;
|
|
opacity: 0.8;
|
|
bottom: 1em;
|
|
right: 10em;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
<script src="d3.js" async></script>
|
|
<script src="scoreboard.js" async></script>
|
|
<script>
|
|
|
|
var type = "original";
|
|
var interval = 60000;
|
|
|
|
function preinit()
|
|
{
|
|
type = "total";
|
|
interval = 60000;
|
|
}
|
|
|
|
function updateType(newType)
|
|
{
|
|
type = newType;
|
|
init();
|
|
}
|
|
|
|
function init() {
|
|
var sb = document.getElementById("scoreboard");
|
|
scoreboard(sb, true, type, interval);
|
|
}
|
|
|
|
window.addEventListener("DOMContentLoaded", preinit);
|
|
window.addEventListener("DOMContentLoaded", init);
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>Scoreboard</h1>
|
|
<div id="scoreboard"></div>
|
|
</body>
|
|
</html>
|
|
|