1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
<html>
<body bgcolor="#FFFFCE">
<table cellspacing=3 cellpadding=4 width="100%" height="100%">
<tr>
<td>
<center>
<script type="text/javascript">
if (window.innerWidth <= 600) {
document.write("<font size=+0><b>");
} else {
document.write("<font size=+2><b>");
}
if ( navigator.userAgent.match(/iPad|iPhone|iPod/i) ) {
document.write("This is Golly version 1.2 for iOS");
} else if ( navigator.userAgent.match(/Android/i) ) {
document.write("This is Golly version 1.2 for Android");
} else {
document.write("This is Golly version ??? for ???");
}
</script>
</b><br>
</font>
<script type="text/javascript">
if (window.innerWidth <= 600) {
document.write("<font size=-2>");
} else {
document.write("<font size=+0>");
}
</script>
<br>© 2005-2019 The Golly Gang:<br>
Andrew Trevorrow, Tom Rokicki, Tim Hutton,<br>
Dave Greene, Jason Summers, Robert Munafo,<br>
Maks Verver, Brenton Bostick, Chris Rowett.<br>
<script type="text/javascript">
if (window.innerWidth <= 600) {
document.write("<br><img src=\"about.gif\" width=\"80%\"><br>");
} else {
document.write("<br><img src=\"about.gif\"><br>");
}
</script>
<br>
Golly is an open source, cross-platform application for<br>
exploring the Game of Life and other cellular automata.<br>
<br>
<b><a href="http://golly.sourceforge.net/">http://golly.sourceforge.net/</a></b><br>
</font>
</center>
<!--
on iPad (gen 2): devicePixelRatio = 1 innerWidth = 768 screen.availWidth = 768
on Android emulator: devicePixelRatio = 1.5 innerWidth = 320 screen.availWidth = 480
on Nexus 7: devicePixelRatio = 2 innerWidth = 600 screen.availWidth = 1200
<script type="text/javascript">
document.write("innerWidth = " + window.innerWidth + "<br>");
document.write("innerHeight = " + window.innerHeight + "<br>");
document.write("screen.availWidth = " + window.screen.availWidth + "<br>");
document.write("screen.availHeight = " + window.screen.availHeight + "<br>");
document.write("devicePixelRatio = " + window.devicePixelRatio + "<br>");
</script>
-->
</td>
</tr>
</table>
</body>
</html>
|