2011-11-21 22:02:11 -07:00
|
|
|
<!DOCTYPE html>
|
2011-12-07 21:47:58 -07:00
|
|
|
<!--
|
|
|
|
Roller Derby Scoreboard Copyright © 2011 Neale Pickett
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
2011-11-21 22:02:11 -07:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>LADD Scoreboard</title>
|
|
|
|
<meta charset="utf-8">
|
2012-07-13 19:05:20 -06:00
|
|
|
<link rel="stylesheet" type="text/css" href="res/scoreboard.css">
|
|
|
|
<script type="text/javascript" src="logos/logos.js"></script>
|
|
|
|
<script type="text/javascript" src="res/scoreboard.js"></script>
|
2012-07-06 18:30:37 -06:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!--
|
|
|
|
HTML5 says not to use tables for layout. Since this is
|
|
|
|
a highly-styled page, it looks awful without CSS. Sorry.
|
|
|
|
-->
|
|
|
|
<div id="scoreboard">
|
|
|
|
<p>
|
2012-07-15 10:35:53 -06:00
|
|
|
<span id="logo-a-container"><img src="" alt="A" id="logo-a" onclick="handle(event);"></span>
|
2012-07-06 18:30:37 -06:00
|
|
|
<span id="timeouts-a" onclick="handle(event);">0</span>
|
|
|
|
<span id="jammer-a" onclick="handle(event);">★</span>
|
|
|
|
<span id="score-a" onclick="handle(event);">-</span>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<span id="period" onclick="handle(event);">--:--</span>
|
|
|
|
<span id="periodtext" onclick="handle(event);"></span>
|
|
|
|
<span id="jam" onclick="handle(event);">-:--.-</span>
|
|
|
|
<span id="jamtext" onclick="handle(event);"></span>
|
|
|
|
<span id="jamno" onclick="handle(event);">0</span>
|
|
|
|
</p>
|
2011-11-21 22:02:11 -07:00
|
|
|
|
2012-07-06 18:30:37 -06:00
|
|
|
<p>
|
2012-07-15 10:35:53 -06:00
|
|
|
<span id="logo-b-container"><img src="" alt="B" id="logo-b" onclick="handle(event);"></span>
|
2012-07-06 18:30:37 -06:00
|
|
|
<span id="timeouts-b" onclick="handle(event);">0</span>
|
|
|
|
<span id="jammer-b" onclick="handle(event);">★</span>
|
|
|
|
<span id="score-b" onclick="handle(event);">-</span>
|
|
|
|
</p>
|
2012-07-06 23:45:03 -06:00
|
|
|
</div>
|
2011-12-09 21:28:31 -07:00
|
|
|
|
2012-07-06 18:30:37 -06:00
|
|
|
<div id="notice">
|
|
|
|
<div id="notice-1">Power Jam</div>
|
|
|
|
<div id="notice-2">Grand Slam</div>
|
|
|
|
<div id="notice-3">Ouch</div>
|
|
|
|
<div id="notice-4">OMG</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
2011-11-21 22:02:11 -07:00
|
|
|
</html>
|