add png screen shot for google and non-js visitors

This commit is contained in:
Neale Pickett 2012-03-15 10:31:35 -06:00
parent 24b4d3b4f1
commit 7cf5172fff
3 changed files with 26 additions and 1 deletions

View File

@ -34,7 +34,17 @@
<script type="text/javascript" src="logos.js"></script> <script type="text/javascript" src="logos.js"></script>
<script type="text/javascript" src="scoreboard.js"></script> <script type="text/javascript" src="scoreboard.js"></script>
<table id="scoreboard">
<div id="screenshot">
<img src="screenshot.png">
<p>
The scoreboard requires JavaScript. If your browser is capable
of JavaScript, enable it for this page to try the scoreboard
in your browser!
</p>
</div>
<table id="scoreboard" style="display: none;">
<caption> <caption>
Working demonstration: click on Working demonstration: click on
team logos, then the jam time! team logos, then the jam time!
@ -77,6 +87,13 @@
</tr> </tr>
</table> </table>
<script type="text/javascript">
var sb = document.getElementById("scoreboard");
sb.style.display = "table";
sb = document.getElementById("screenshot");
sb.style.display = "none";
</script>
<h1>Features</h1> <h1>Features</h1>
<ul> <ul>

BIN
screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

View File

@ -34,3 +34,11 @@ caption {
font-size: 33%; font-size: 33%;
font-family: default; font-family: default;
} }
#screenshot {
text-align: center;
}
#screenshot img {
border: solid black 4px;
}