-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (102 loc) · 4.2 KB
/
index.html
File metadata and controls
119 lines (102 loc) · 4.2 KB
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
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Bishi Bashi stack">
<meta name="author" content="Chark-WDI 9">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<link href='https://fonts.googleapis.com/css?family=Slackey' rel='stylesheet' type='text/css'>
</head>
<body>
<section class="container well" id="game-title">
<h1 class="text-center">Bishi Bashi Special-Two Players</h1>
</section>
<div class="text-center">
<button type="button" class="btn btn-danger" id="reset">New Game</button>
<button type="button" class="btn btn-warning" id="mute">Mute/Unmute</button>
<button type="button" class="btn btn-info" data-toggle="modal" data-target="#myModal" id="instruct">Instructions</button>
</div>
<section class="container well" id="column-section">
<div>
<div class="row" >
<!-- LEFT COLUMN -->
<div class="col-xs-6" id="left-column">
<div class="col-xs-6 col-xs-offset-3" id="Pikachu1">
<img class="img-responsive center-block" src="images/PikachuLeft2.png" alt="Image">
</div>
</div> <!-- left col close div -->
<!-- RIGHT COLUMN -->
<div class="col-xs-6" id="right-column">
<div class="col-xs-6 col-xs-offset-2" id="Pikachu2">
<img class="img-responsive center-block" src="images/PikachuProud.png" alt="Image">
</div>
</div> <!-- right col close div -->
</div> <!-- div row close div -->
</div>
</section> <!-- close columns section -->
<section class="container well text-center bg-info">
<div class="bg-info">
<div class="row">
<div class="col-xs-3 h3">
Player A
</div><!-- <input type="number" placeholder="Your name"> -->
<div class="col-xs-3 h3" id="timerA">
<time>00.0s</time>
</div>
<div class="col-xs-3 h3">
Player B
</div>
<div class="col-xs-3 h3" id="timerB">
<time>00.0s</time>
</div>
</div> <!-- div row close div -->
<div class="row text-success">
<div class="col-xs-6">
<h3 id="scoreA">Current score: 0</h3>
</div>
<div class="col-xs-6">
<h3 id="scoreB">Current score: 0</h3>
</div>
</div>
</div>
</section>
<!-- Modal -->
<div id="myModal" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header text-center bg-success">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="modal-title">Instructions for Bishi Bashi Special</h2>
</div>
<div class="modal-body">
<img class="img-responsive-height pull-right" src="images/PikachuLeft2.png" alt="Image">
<img class="img-responsive-height pull-left" src="images/instructions.png" alt="Image">
</div>
<div class="modal-footer text-info">
<div class="row">
<div class="col-xs-9 h5">Recreated by GA-WDI-HK-9-Charlotte KWAN
</div>
<div class="col-xs-3 h5"><button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/buzz/1.1.10/buzz.min.js"></script>
<script src="js/column.js"></script>
<script src="js/player.js"></script>
<script src="js/game.js"></script>
<script src="js/application.js"></script>
</body>
</html>