moth/res/scoreboard-all.html

54 lines
1.0 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title>Scoreboard</title>
<link rel="stylesheet" href="basic.css" type="text/css">
2018-10-02 08:07:58 -06:00
<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);
}
2018-10-02 08:00:13 -06:00
window.addEventListener("DOMContentLoaded", preinit);
window.addEventListener("DOMContentLoaded", init);
</script>
</head>
<body>
<h1>Scoreboard</h1>
<div id="scoreboard"></div>
</body>
</html>