-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
85 lines (75 loc) · 3.25 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Lazy pirates</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/playable-area.css">
<link rel="stylesheet" href="css/styles.css">
<meta name="viewport" content="width=device-width">
</head>
<body>
<div id="start-screen">
<div id="start-slide-text">
<img src="img/pirateIcon.png">
<p>Welcome to amazing game !<br>
made in 5 days by O.K.
</p>
<h1>LAZY PIRATES!</h1>
<p>You want to direct the oncoming boats to their matching colored port.</p>
<img src="img/boat0.png"><span class="glyphicon glyphicon-arrow-right"></span><img src="img/port0.png">
<p>To direct the boats, <b>click on the circled area</b> of the river to move log and change the
direction.</p>
<img src="img/tutorial.gif">
<br></b>
<br><b>CHOOSE DIFFICULTY:</b><br>
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary">
<input type="radio" value ="1" name="options" id="option1" autocomplete="off" checked> EASY
</label>
<label class="btn btn-primary active">
<input type="radio" value="2" name="options" id="option2" autocomplete="off"> NORMAL
</label>
<label class="btn btn-primary">
<input type="radio" value="3" name="options" id="option3" autocomplete="off"> EXTREME
</label>
</div>
<br><b>CHOOSE LEVEL TO START:</b><br>
<div class="btn-group" role="group">
<button type="button" class="btn btn-success" id="easy-btn">Havana (3 colors)</button>
<button type="button" class="btn btn-success" id="normal-btn">Tortuga (4 colors)</button>
<!-- <button type="button" class="btn btn-danger" id="hard-btn">EXTREME</button> -->
</div>
</div>
</div>
<div id="end-screen" display="none">
<h2>Congrats you win</h2>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<p>---------------------</p>
<button type="button" class="btn btn-primary" id="restart-btn">PLAY AGAIN</button>
</div>
<div id="game" display="none">
<div id="playable-area">
<div id="water"></div>
<div id="map"></div>
</div>
<div id='header'>
<div id="timer">TIME: <span id="timer-value"></span></div>
<div id="score">CORRECT: <span id="score-value">0 of 0</span></div>
</div>
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script type="text/javascript" src="ionsound/ion.sound.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
<script src="js/global.js"></script>
<script src="js/game.js"></script>
<script src="js/main.js"></script>
</body>
</html>