blob: 900ae2b3574d150690da7cbff3ee44506953fd74 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale = 1.0,maximum-scale = 1.0" />
<title>CAO</title>
<link rel="stylesheet" href="cao-common.css">
<link rel="stylesheet" href="cao-mobile.css">
<script src="jquery.js"></script>
<script src="cao-common.js"></script>
<script src="cao-mobile.js"></script>
</head>
<body>
<div data-role="page">
<header hidden>
<span id="leave-room">Leave this room</span>
<span id="score">Your score is 0</span>
</header>
<div id="home" class="page current">
<h1>Cards Against Humanity</h1>
<h2>A party game for horrible people.</h2>
<button id="join-btn" class="bottom" hidden>Join game!</button>
</div>
<div id="game" class="page">
<div data-state="judge-collect">
<div class="card-list read-only">
<button id="black-card" class="card black"></button>
</div>
<div class="message">You have <span id="played-card-number">0</span> cards!</div>
</div>
<div id="white-cards" class="card-list read-only"></div>
<button id="become-judge-btn" class="bottom" data-state="become-judge">Become judge!</button>
<div class="bottom" data-state="judge-choose"></div>
<div class="bottom" data-state="player-choose">Choose a card...</div>
<div class="bottom" data-state="player-wait">Waiting for judge...</div>
<button class="bottom" data-state="judge-collect">Collect!</button>
</div>
</body>
</html>
|