forked from irori/blokus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresult.html
70 lines (64 loc) · 2.77 KB
/
result.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta name="viewport" content="width=580">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Black+Ops+One" type="text/css">
<link rel="stylesheet" href="css/result.css" type="text/css">
<script type="text/javascript" src="js/piece.js"></script>
<script type="text/javascript" src="js/board.js"></script>
<script type="text/javascript" src="js/result.js"></script>
<title>Blokus Duo</title>
</head>
<body onload="init()">
<div id="board">
<div class="vgrid" style="left: 20px"></div>
<div class="vgrid" style="left: 40px"></div>
<div class="vgrid" style="left: 60px"></div>
<div class="vgrid" style="left: 80px"></div>
<div class="vgrid" style="left:100px"></div>
<div class="vgrid" style="left:120px"></div>
<div class="vgrid" style="left:140px"></div>
<div class="vgrid" style="left:160px"></div>
<div class="vgrid" style="left:180px"></div>
<div class="vgrid" style="left:200px"></div>
<div class="vgrid" style="left:220px"></div>
<div class="vgrid" style="left:240px"></div>
<div class="vgrid" style="left:260px"></div>
<div class="hgrid" style="top: 20px"></div>
<div class="hgrid" style="top: 40px"></div>
<div class="hgrid" style="top: 60px"></div>
<div class="hgrid" style="top: 80px"></div>
<div class="hgrid" style="top:100px"></div>
<div class="hgrid" style="top:120px"></div>
<div class="hgrid" style="top:140px"></div>
<div class="hgrid" style="top:160px"></div>
<div class="hgrid" style="top:180px"></div>
<div class="hgrid" style="top:200px"></div>
<div class="hgrid" style="top:220px"></div>
<div class="hgrid" style="top:240px"></div>
<div class="hgrid" style="top:260px"></div>
<div class="marker"
style="left: 82px; top: 82px; background-color:#a8f"></div>
<div class="marker"
style="left:182px; top:182px; background-color:#fb6"></div>
</div>
<div id="opponents-piece-area"><div id="opponents-pieces"></div></div>
<div id="piece-area"></div>
<div id="pieces"></div>
<div class="logo">Blokus Duo</div>
<table class="violet-scoreboard">
<tr><td id="violet-name">Violet</td></tr>
<tr><td id="violet-score" class="scoreboard-score">0 points</td></tr>
</table>
<table class="orange-scoreboard">
<tr><td id="orange-name">Orange</td></tr>
<tr><td id="orange-score" class="scoreboard-score">0 points</td></tr>
</table>
<table id="record"></table>
<button id="back-button" onclick="backButton()"><<</button>
<button id="forward-button" onclick="forwardButton()" disabled>>></button>
<div id="new-game"><p><a href="blokus.html">New Game</a></p></div>
</body>
</html>