-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (62 loc) · 2.66 KB
/
index.html
File metadata and controls
72 lines (62 loc) · 2.66 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Santa's Workshop</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Bungee" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
</header>
<section class="row">
<!-- creates the first group for board and info -->
<article class="col-md-12">
<div class="img-container">
<h1>Santa's Factory</h1>
<img id="theGift" src="./assets/christmas-present.png" alt="">
<canvas id="myCanvas" ></canvas>
<!--This is where we will update the score-->
<div data-score id="score-board"></div>
<p id="status"></p>
<button id="moveMe" class="btn-info move" type="button" name="move">MOVE</button>
<!-- <img id="sleigh" src="./assets/sleigh.png" alt=""> -->
</div>
</article>
</section>
<!-- creates the village (store for bonuses) -->
<section class="row spacing">
<div class="col-md-offset-3 col-md-6 centertain">
<h2>The Workshop</h2>
<button data-value=100 class="col-md-3 border powerUp" id="bonus-1">
<img class="store" id="gumdrop" src="./assets/Gumdrop_Pose.png" alt="">
<p>100</p>
</button>
<button data-value=1000 class="col-md-3 border powerUp" id="bonus-2">
<img class="store" id="reindeer" src="./assets/reindeer.gif" alt="">
<p>1,000</p>
</button>
<button data-value=10000 class="col-md-3 border powerUp" id="bonus-3">
<img class="store" id="tree" src="./assets/tree.gif" alt="">
<p>10,000</p>
</button>
<button data-value=100000 class="col-md-3 border powerUp" id="bonus-4">
<img class="store" id="santa" src="./assets/santa.gif" alt="">
<p>100,000</p>
</button>
</div>
</section>
</body>
</html>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script type="text/javascript" src="./scripts/canvas.js"></script>
<script type="text/javascript" src="./scripts/main.js"></script>