-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (35 loc) · 2.23 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
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Rock! Paper! Scissors!</title>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<!-- BootStrap CDN -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<div class="bd-pageheader">
<h1>Rock, Paper, Scissors!</h1>
<h4>Choose your weapon!</h4>
</div>
<div class="col-md-12 col-xs-12">
<h5 class="col-md-offset-1 col-md-2 col-xs-12 weapon" href="" onClick="var choice = pick(weapon[0])"><i class="fa fa-hand-rock-o fa-6" aria-hidden="true"></i></h5>
<h5 class="col-md-2 col-xs-12" href="" onClick="var choice = pick(weapon[1])"><i class="fa fa-hand-paper-o fa-6" aria-hidden="true"></i></h5>
<h5 class="col-md-2 col-xs-12" href="" onClick="var choice = pick(weapon[2])"><i class="fa fa-hand-scissors-o fa-6" aria-hidden="true"></i></h5>
<div class="col-md-4 col-xs-12">
<button id="result" type="button" onClick="play()" class="btn btn-lg btn-success col-md-12 col-xs-12">Rock, Paper, Scissors!</button>
</div>
<div class="col-md-4 col-xs-12">
<button id="orange" type="button" onclick="orange()" class="btn btn-lg btn-warning col-md-12 col-xs-12">Rock, Paper, Scissors, Shoot!</button>
</div>
<div class="col-md-12 col-xs-12"><h3 id="error" class="shoot"></h3></div>
<div class="col-md-4 col-xs-12"><h3 id="user-choice" class="status"></h3></div>
<div class="col-md-4 col-xs-12"><h3 id="computer-choice" class="status"></h3></div>
<div class="col-md-4 col-xs-12"><h3 id="outcome" class="status"></h3></div>
</div>
</div>
</body>
</html>