-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (94 loc) · 3.51 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
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/styles.css">
<script src="js/jquery-3.0.0.min.js"></script>
<script src="js/scripts.js"></script>
<title>Tamagotchi JS</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12">
<h1 class="text-center">PokéGotchi</h1>
</div>
</div>
<br>
<div class="row">
<div class="col-xs-7 text-center">
<img id="pokemon" src="images/charmander.gif">
<br><br>
</div>
<div class="col-xs-5 stats">
<p><img src="images/food.png" width="20px" height="20px"> <span class="food">100</span>%</p>
<p><img src="images/activity.jpg" width="20px" height="20px"> <span class="activity">100</span>%</p>
<p><img src="images/sleep.png" width="20px" height="20px"> <span class="sleep">100</span>%</p>
<p><img src="images/money.png" width="20px" height="20px"> $<span class="money">0.00</span></p>
<p>Lvl: <span class="level">1</span></p>
</div>
</div>
<div class="row">
<div class="col-xs-9">
<div class="progress progress-striped">
<div id="food-level" class="progress-bar progress-bar-success">Food Level</div>
</div>
</div>
<div class="col-xs-3">
<button id="feed" class="btn btn-success">Feed
<span class="hidden-xs">←</span>
</button>
</div>
</div>
<div class="row">
<div class="col-xs-9">
<div class="progress progress-striped">
<div id="activity-level" class="progress-bar progress-bar-success">Activity Level</div>
</div>
</div>
<div class="col-xs-3">
<button id="play" class="btn btn-success">Play
<span class="hidden-xs">↓</span>
</button>
</div>
</div>
<div class="row">
<div class="col-xs-9">
<div class="progress progress-striped">
<div id="sleep-level" class="progress-bar progress-bar-success">Sleep Level</div>
</div>
</div>
<div class="col-xs-3">
<button id="sleep" class="btn btn-success">Sleep
<span class="hidden-xs">→</span>
</button>
</div>
</div>
<div class="row">
<div id="evolve" class="col-xs-4 evolve">
<img src="images/evolve_Button.png" width="72" height="72">
</div>
<div id="buy-evolve" class="col-xs-4 hide">
<img class="red" src="images/evolve_Button.png" width="72" height="72">
</div>
<div id="buy-evolve2" class="col-xs-4 hide">
<img class="red" src="images/evolve_Button.png" width="72" height="72">
</div>
<div id="level-up" class="col-xs-4 gray-item">
<img src="images/levelUp.png" width="72" height="72">
</div>
<div id="buy-level-up" class="col-xs-4 hide">
<img src="images/levelUp.png" width="72" height="72">
</div>
<div id="potion" class="col-xs-4 gray-item">
<img src="images/smallPotion.png" width="48" height="72" />
</div>
<div id="buy-potion" class="col-xs-4 hide">
<img src="images/smallPotion.png" width="48" height="72" />
</div>
</div>
</div>
</body>
</html>