-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
117 lines (109 loc) · 3.1 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
rel="shortcut icon"
href="https://iconarchive.com/download/i91933/icons8/windows-8/User-Interface-Login.ico"
type="image/x-icon"
/>
<title>Login</title>
</head>
<body>
<div id="login">
<h1 id="title">Rock Paper Scissors</h1>
<form id="form" onsubmit="saveUsername()">
<input type="text" placeholder="Username" class="input" />
<div>
<button type="submit" class="login-button">Login</button>
<button type="button" class="howto-button" onclick="toggleDisplay()">
How to play
</button>
</div>
</form>
<div class="box hide">
<h2>How to play</h2>
<div class="x-button" onclick="toggleDisplay()"><p>x</p></div>
<ul>
<li>"Scissors cuts Paper</li>
<li>Paper covers Rock</li>
<li>Rock crushes Lizard</li>
<li>Lizard poisons Spock</li>
<li>Spock smashes Scissors</li>
<li>Scissors decapitates Lizard</li>
<li>Lizard eats Paper</li>
<li>Paper disproves Spock</li>
<li>Spock vaporizes Rock</li>
<li>(and as it always has) Rock crushes Scissors"</li>
</ul>
</div>
</div>
<div id="game" class="hide">
<h1>Rock, Paper, Scissors, Lizard, Spock!</h1>
<div class="player-options">
<div>
<img
src="./img/rock.svg"
alt="Rock"
class="rock option"
data-value="rock"
/>
</div>
<div>
<img
src="./img/paper.svg"
alt="Paper"
class="paper option"
data-value="paper"
/>
</div>
<div>
<img
src="./img/scissors.svg"
alt="Scissors"
class="scissors option"
data-value="scissors"
/>
</div>
<div>
<img
src="./img/lizard.svg"
alt="Lizard"
class="lizard option"
data-value="lizard"
/>
</div>
<div>
<img
src="./img/spock.svg"
alt="Spock"
class="spock option"
data-value="spock"
/>
</div>
</div>
<div class="results hide">
<div class="wrapper">
<div id="player">
<span class="player-score">0</span>
<h3 id="username">Player</h3>
</div>
<div class="player-selection"></div>
</div>
<div class="wrapper">
<div id="computer">
<h3>Computer</h3>
<span class="computer-score">0</span>
</div>
<div class="computer-selection"></div>
</div>
</div>
<div class="show-message"></div>
</div>
<script src="login.js"></script>
<script src="game.js"></script>
</body>
</html>