2011-11-11 23:20:31 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!-- Presentation Timer 2011 Neale Pickett -->
|
|
|
|
<!-- Placed in the public domain. -->
|
2011-11-23 21:43:09 -07:00
|
|
|
<!-- Time-stamp: "2011-11-23 15:50:46 neale" -->
|
2011-11-11 23:20:31 -07:00
|
|
|
<html>
|
|
|
|
<head>
|
2011-11-17 17:53:49 -07:00
|
|
|
<title>LADD Roller Derby Scoreboard</title>
|
2011-11-11 23:20:31 -07:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
2011-11-17 17:53:49 -07:00
|
|
|
<link rel="stylesheet" type="text/css" href="scoreboard.css">
|
2011-11-11 23:20:31 -07:00
|
|
|
</head>
|
|
|
|
<body>
|
2011-11-17 17:53:49 -07:00
|
|
|
<h1>LADD Roller Derby Scoreboard</h1>
|
|
|
|
<img src="sb3.png" alt="Running scoreboard">
|
|
|
|
|
|
|
|
<p>
|
|
|
|
This is the scoreboard used by
|
|
|
|
the <a href="http://laderbydames.com/">Los Alamos Derby Dames</a>,
|
|
|
|
in bouts and scrimmages.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<h1>Features</h1>
|
|
|
|
<ul>
|
2011-11-23 21:43:09 -07:00
|
|
|
<li>
|
|
|
|
Easy mouse-driven (with hotkeys) setup and operation
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
Looks <em>good</em>, with colors tuned for high-visibility
|
|
|
|
with projectors
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
Appearance can be customized in HTML and CSS
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
Runs in any modern web browser—even smartphones and
|
|
|
|
tablets
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
Ships with <a href="logos.html">an ever-expanding set of
|
|
|
|
team logos</a>
|
|
|
|
</li>
|
2011-11-17 17:53:49 -07:00
|
|
|
<li>Uses WFTDA timing</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<h1>Try it!</h1>
|
2011-11-23 21:43:09 -07:00
|
|
|
<script type="text/javascript" src="logos.js"></script>
|
2011-11-17 17:53:49 -07:00
|
|
|
<script type="text/javascript" src="scoreboard.js"></script>
|
|
|
|
<table id="scoreboard">
|
2011-11-11 23:20:31 -07:00
|
|
|
<tr>
|
2011-11-14 22:41:03 -07:00
|
|
|
<td width="20%" class="team">
|
2011-11-15 21:56:33 -07:00
|
|
|
<span id="name-a" onclick="handle(event);">-</span>
|
2011-11-11 23:20:31 -07:00
|
|
|
<br>
|
2011-11-23 21:43:09 -07:00
|
|
|
<img src="" alt="☻" id="logo-a" onclick="handle(event);">
|
2011-11-11 23:20:31 -07:00
|
|
|
</td>
|
|
|
|
<td width="60%" rowspan="2">
|
2011-11-14 22:41:03 -07:00
|
|
|
<p>
|
2011-11-15 21:56:33 -07:00
|
|
|
<span id="period" onclick="handle(event);">--:--</span>
|
2011-11-11 23:20:31 -07:00
|
|
|
<br>
|
2011-11-15 21:56:33 -07:00
|
|
|
<span id="periodtext" onclick="handle(event);">-</span>
|
2011-11-11 23:20:31 -07:00
|
|
|
</p>
|
2011-11-14 22:41:03 -07:00
|
|
|
<p>
|
|
|
|
<span id="jamtext">-</span>
|
2011-11-11 23:20:31 -07:00
|
|
|
<br>
|
2011-11-15 21:56:33 -07:00
|
|
|
<span id="jam" onclick="handle(event);">-:--.--</span>
|
2011-11-11 23:20:31 -07:00
|
|
|
</p>
|
|
|
|
</td>
|
2011-11-14 22:41:03 -07:00
|
|
|
<td width="20%" class="team">
|
2011-11-15 21:56:33 -07:00
|
|
|
<span id="name-b" onclick="handle(event);">-</span>
|
2011-11-11 23:20:31 -07:00
|
|
|
<br>
|
2011-11-23 21:43:09 -07:00
|
|
|
<img src="" alt="☻" id="logo-b" onclick="handle(event);">
|
2011-11-11 23:20:31 -07:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
<td>
|
2011-11-15 21:56:33 -07:00
|
|
|
<span id="score-a" onclick="handle(event);">-</span>
|
2011-11-11 23:20:31 -07:00
|
|
|
</td>
|
|
|
|
<td>
|
2011-11-15 21:56:33 -07:00
|
|
|
<span id="score-b" onclick="handle(event);">-</span>
|
2011-11-11 23:20:31 -07:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2011-11-17 17:53:49 -07:00
|
|
|
|
|
|
|
<p>
|
|
|
|
<a href="scoreboard.html">full-screen version</a> (with
|
|
|
|
keybindings)
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
The scoreboard is implemented in pure HTML5 and JavaScript. The
|
|
|
|
box above is a <em>running scoreboard</em>. If the box works, you
|
|
|
|
can run this scoreboard without installing anything else. Try
|
2011-11-23 21:43:09 -07:00
|
|
|
clicking on team names, then the Jam Timer, to get things started.
|
2011-11-17 17:53:49 -07:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<h1>Documentation</h1>
|
|
|
|
<p>
|
|
|
|
<a href="usage.html">Full documentation</a> comes bundled with the
|
|
|
|
download.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
<h1>Download</h1>
|
|
|
|
<p>
|
2011-11-21 23:38:56 -07:00
|
|
|
<a href="http://woozle.org/~neale/gitweb.cgi/scoreboard/stable.zip">Download
|
2011-11-17 17:53:49 -07:00
|
|
|
the latest version</a> to your hard drive to run a scoreboard
|
|
|
|
without Internet access (<strong>recommended</strong>). This
|
2011-11-22 12:23:32 -07:00
|
|
|
includes the documentation.
|
2011-11-17 17:53:49 -07:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
If your scoreboard computer has an Internet connection, you don't
|
|
|
|
need to download anything at all. Just load up
|
|
|
|
the <a href="scoreboard.html">full-screen version</a> from this
|
|
|
|
page and you're all set.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
You can
|
|
|
|
also <a href="http://woozle.org/~neale/gitweb.cgi/scoreboard">browse
|
|
|
|
the source tree</a> or clone it with git:
|
|
|
|
<pre>git clone http://woozle.org/~neale/projects/scoreboard</pre>
|
|
|
|
</p>
|
2011-11-11 23:20:31 -07:00
|
|
|
</body>
|
|
|
|
</html>
|