-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (95 loc) · 3.18 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
95
96
97
98
99
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Pokedex</title>
<link rel="stylesheet" href="node_modules/pokemon-font/css/pokemon-font.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-beta/css/materialize.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- Left side of the monitor -->
<div id="leftBody">
<!-- Top of the left pokedex including lights -->
<div id="topLeft">
<div id="blueLight">
</div>
<div id="redLight">
</div>
<div id="yellowLight">
</div>
<div id="greenLight">
</div>
<div id="toggleButton">
<h6>Open/Close</h6>
</div>
</div>
<!-- Bottom part of the left side -->
<div id="bottomLeft" class="frame">
<!-- screen on left side of Pokedex -->
<div class="screen">
<div id="leftScreen">
<h2 id='pokeName'></h2>
</div>
</div>
<!-- adding an array of buttons -->
<div class="buttonArray">
<div class="button switch" id="previous">
</div>
<div class="leftButton" id="sound">
<i class="medium material-icons">volume_up</i>
</div>
<div class="leftButton" id="newPic">
<i class="medium material-icons">cached</i>
</div>
<div class="button switch" id="next">
</div>
</div>
<!-- input for finding pokemon in pokedex -->
<form id="search" autocomplete="off">
<input id="searchField" type='text' maxlength="11">
</form>
</div>
</div>
<!-- Right side of the monitor -->
<div id="rightBody" class="close frame">
<div class="hideMe" id="front">
<!-- screen on the right side of the body -->
<div class="screen hideMe">
<div id="rightScreen">
<h1 id="rightDescriptor"></h1>
</div>
</div>
<!-- Array of buttons -->
<div class = "buttonArray hideMe">
<div class="rightButton hideMe" id="stats">
<p>stats</p>
</div>
<div id="powerButton">
<i class="medium material-icons">power_settings_new</i>
</div>
<div class="rightButton hideMe" id="abilities">
<p>ABLTY</p>
</div>
</div>
<!-- Pokeball -->
<section class="hideMe">
<img src="images/pokeball.png" alt="PokeBall" id="pokeBall">
</section>
</div>
</div>
<section id="moreForms" class="hiddenForm">
<form id="addNewPoke" autocomplete="off">
<h3>Add New Pokemon:</h3>
<input id="addMe" type='text' maxlength="11">
</form>
<form id="changeTrainer" autocomplete="off">
<h3>Replace PokeDex:</h3>
<input id="changeMe" type='text' maxlength="11">
</form>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="main.js"></script>
</body>
</html>