-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (70 loc) · 3.09 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 lang="en">
<head>
<link rel="icon" type="image/png" href="img/logo_pokeball.png" />
<meta charset="utf-8">
<title>Pokemon Battle Demo</title>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link href="css/stylesheet.css" rel="stylesheet">
</head>
<body>
<div id="choosePokemon-container" class="bullseye box-shadow-1 border-radius">
<div id = "chooseText">Choose your Pokemon!</div>
<div id="choiceImageHolder">
<img id="pokemonImage1" src="img/CharmanderChoose.png" class="absolute pointer">
</div>
<div id="choiceImageHolder">
<img id="pokemonImage2" src="img/SquirtleChoose.png" class="absolute pointer">
</div>
<div id="choiceImageHolder">
<img id="pokemonImage3" src="img/BulbasaurChoose.png" class="absolute pointer">
</div>
</div>
<div id="main-container" class="bullseye box-shadow-1 border-radius hide">
<div id="top-screen">
<img id = "playerPokemon" src="img/charmander.png" class="absolute"/>
<div id = "userName" class="absolute"></div>
<div id="userLvl" class="absolute"></div>
<div id="userHealthBarHolder" class="absolute">
<div id="userHealthBar" class="absolute"></div>
</div>
<img id = "PlayerPokemon-Info" src="img/your_info.png" class="absolute"/>
<img id = "attackImage" src="img/attack.png" class = "absolute hide"/>
<img id = "pikachuImage" src="img/pikachu.png" class="absolute"/>
<div id = "cpuName" class="absolute"></div>
<div id="cpuLvl" class="absolute"></div>
<div id="cpuHealthBarHolder" class="absolute">
<div id="cpuHealthBar" class="absolute"></div>
</div>
<img id = "pikachuInfo" src="img/enemy_info.png" class="absolute"/>
<div id="chatText" class="absolute text-subhead"></div>
<img src="img/grass.png" class="innerBattleScreen" />
<img src="img/chat_window.png" class="innerBattleScreen" />
</div>
<div id="bottom-screen">
<div id="users-buttons" class = "pointer hide">
<div id="move1-Button" value = 0>
<div id="move1-Text" class="absolute text-18 text-center"></div>
<img src="img/move.png" id="move1Button"/>
</div>
<div id="move2-Button" value = 1>
<div id="move2-Text" class="absolute text-18 text-center"></div>
<img src="img/move.png" id="move2Button"/>
</div>
<div id="move3-Button" value = 2>
<div id="move3-Text" class="absolute text-18 text-center"></div>
<img src="img/move.png" id="move3Button"/>
</div>
<div id="move4-Button" value = 3>
<div id="move4-Text" class="absolute text-18 text-center"></div>
<img src="img/move.png" id="move4Button"/>
</div>
</div>
<div id="gameOver" class="absolute text-30 text-center hide">Game Over - Refresh to play again!</div>
<img src="img/toolbar_bg.png" class="innerBattleScreen" />
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script type="text/javascript" src="js/game.js"></script>
</body>
</html>