mirror of https://github.com/dirtbags/moth.git
Changed from reloader to projector
This commit is contained in:
parent
23fac6a44a
commit
061474a231
|
@ -48,6 +48,7 @@ window.addEventListener("load", init);
|
|||
<li>Erin Ochoa</li>
|
||||
<li>William Phillips</li>
|
||||
<li>Jeremy Hefner</li>
|
||||
<li>James Wernicke</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Scoreboard</title>
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<script src="scoreboard.js" async></script>
|
||||
<style>
|
||||
body, html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
cursor: none;
|
||||
}
|
||||
iframe {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
var urls = ["scoreboard.html", "credits.html", "tanks.html"];
|
||||
var i = 0;
|
||||
function reload() {
|
||||
// alternate between scoreboard and other things
|
||||
var url = i%2 ? urls[0] : urls[i%urls.length];
|
||||
document.getElementById('reloader').src = url;
|
||||
i++;
|
||||
}
|
||||
|
||||
function init() {
|
||||
window.timeout = setTimeout(reload, 6000);
|
||||
}
|
||||
|
||||
window.addEventListener("load", init);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<iframe id="reloader" src="scoreboard.html"></iframe>
|
||||
</body>
|
||||
</html>
|
|
@ -13,24 +13,25 @@
|
|||
}
|
||||
iframe {
|
||||
width: 100%;
|
||||
height: 100;
|
||||
height: 100%;
|
||||
border: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
var i = 0;
|
||||
function init() {
|
||||
setTimeout(function(){
|
||||
setInterval(function(){
|
||||
window.document.getElementById('reloader').src = window.document.getElementById('reloader').src;
|
||||
},60000);
|
||||
},2000);
|
||||
}
|
||||
|
||||
window.addEventListener("load", init);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<iframe id="reloader" src="http://localhost/tf6/scoreboard.html">
|
||||
<iframe id="reloader" src="//koth/scoreboard.html">
|
||||
<div id="scoreboard"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue