forked from vhickam/a-trashy-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (60 loc) · 2.39 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link href="https://fonts.googleapis.com/css?family=Boogaloo|Covered+By+Your+Grace|Gloria+Hallelujah|Luckiest+Guy|Sigmar+One" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
</head>
<body>
<div id="out-of-time">
<p>The world heated up before you
cleaned it.</p>
</div>
<div class="in-game-message">
<p></p>
</div>
<div id="dialog-message" title="A Trashy Game">
<p>
Let's place A Trashy Game! Drag and drop the recyclable items to the recycling bin and the trash to the trash bin.
You lose if you are wrong 3 times or you run out of time!
</p>
</div>
<div id="newlevel-message" title="Level Up!">
<p>
Congratulations! You beat the level. Do you want to continue to the next level?
</p>
</div>
<div id="end-game" title="You Lose">
<p>You put too many items in the wrong bin :( </p>
</div>
<div id="win" title="You Won!">
<p>Thanks for playing! Now go really make a difference and pick up trash outside:)</p>
</div>
<div class="header">
<center><h1 class="title">A TRASHY GAME</h1></center>
<div class="points">
<div class="specs"><h2>Level</h2><h3 id="level">1</h3></div>
<div class="specs"><h2>Time</h2><h3 id="time"> 0</h3> </div>
<div class="specs"><h2>Score</h2><h3 id="points">0</h3> </div>
</div>
</div>
<div class="dumpsters">
<div class="dump recycle-dump">
<img src="images/recycle.png" class="dump-img img" id="recycling-bin">
</div>
<div class="dump trash-dump">
<img src="images/trashcan4.png" class="dump-img img trashcan" id="trash-bin">
</div>
</div>
<div id="game-container">
</div>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="resources.js"></script>
<script src="myjs.js"></script>
</body>
</html>