-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
98 lines (93 loc) · 5.21 KB
/
index.html
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!--
- This file is part of Maikados.
-
- Maikados 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.
-
- Maikados 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 Maikados. If not, see <http://www.gnu.org/licenses/>.
-->
<title>Maikados</title>
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="chrome=1"><![endif]-->
<link rel="stylesheet" href="resources/master.css" type="text/css" media="screen">
<link rel="stylesheet" href="lib/fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen">
<link rel="stylesheet" href="lib/jnotify/jquery.jnotify.css" type="text/css" media="screen">
<script type="text/javascript" src="resources/jquery.js"></script>
<script type="text/javascript" src="resources/jquery-ui.js"></script>
<script type="text/javascript" src="resources/raphael.js"></script>
<script type="text/javascript" src="resources/socket.io.min.js"></script>
<script type="text/javascript" src="lib/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
<script type="text/javascript" src="lib/jnotify/jquery.jnotify.min.js"></script>
<script type="text/javascript" src="resources/deepCopy.min.js"></script>
<script type="text/javascript" src="resources/maikados.js"></script>
</head>
<body>
<h1>Maikados</h1>
<section id="game">
<article id="about">
<h2>Über…</h2>
<p>
Maikados ist eine Brettspielumsetzung einer empfehlenswerten
Vorlage. Es wird zum Testen von verschiedenen Technologien entwickelt.
Für die Multiplayervariante wird ein Server benötigt, ansonsten
steht ein Computergegner zur Verfügung.
</p>
<p>
Es handelt sich um eine Implementierung zu privaten
Zwecken, da keine Rechte vorhanden sind. Siehe auch ein (unabhängiges)
<a href="http://goo.gl/6Di2e" target="_blank">Einführungsvideo</a> von <em>SPIELKULT.de</em>.
</p>
<p id="startButtonP"><button id="startButton">Spiel starten</button></p>
<p id="status"></p>
<div id="gameInformation">
<p>
<span id="player0Name"></span><span id="player0Points"></span>
vs.
<span id="player1Name"></span><span id="player1Points"></span>
</p>
</div>
<div id="lobby">
<ul>
</ul>
</div>
</article>
<img id="signs" src="resources/japanese_signs.png" alt="Dekoration, Schriftzeichen">
</section>
<a href="http://github.com/jannschu/maikados"><img style="position: absolute; top: 0; right: 0; border: 0;" src="resources/github-banner.png" alt="Fork me on GitHub"></a>
<footer>
Copyright (©) 2011 Jannik Schürg <span class="email">[email protected]</span>, Shahriar Heidrich <span class="email">[email protected]</span> (KI),<br>
Julian Weiß (Japanische Schriftzeichen), Lukas Prießnitz (Akiver Beta-Tester, Erwähnung hier auf sein Drängen hin)<br>,
Yannic Sander … und viele andere (Nichts)<br>
<a href="http://jashkenas.github.com/coffee-script/">CoffeeScript</a> |
<a href="http://raphaeljs.com/">Raphael</a> (<a href="http://github.com/jannschu/raphael">Fork</a>) |
<a href="http://www.erlang.org/">Erlang</a> |
<a href="http://socket.io/">Socket.IO</a> |
<a href="https://github.com/yrashk/socket.io-erlang/">socket.io-erlang</a>
<a href="http://www.fsf.org/" id="fsf-logo"><img src="resources/gplv3-88x31.png" alt="Lizenz GPLv3 Logo"></a>
</footer>
<div id="uiElements" style="display: none">
<div id="getPlayerName">
<form name="getPlayerNameForm" id="getPlayerNameForm" autocomplete="off">
<p id="nicknameErrorMsg"><span class="msg"></span></p>
<label for="nickname">Und bitte</label>
<input type="text" value="" id="nickname">
<label id="aiLabel">Der gewünschte Gegner</label>
<label><input type="radio" name="ai" value="yes" checked> Computer</label>
<label><input type="radio" name="ai" value="no"> Mensch</label>
<button id="chooseNickname">Abschicken</button>
</form>
</div>
</div>
</body>
</html>