-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (39 loc) · 1.96 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Pokemon Damage</title>
<link rel="stylesheet" type="text/css" href="styles/main.css">
</head>
<body>
<h3>Pokemon Damage Calculator</h3>
<div id="first-stats" class="stats-menu">
<p>Level: <input type="text" id="level1" value="100" /></p>
<p>Attack: <input type="text" id="attack1" value="350" /></p>
<p>Defense: <input type="text" id="defense1" value="350" /></p>
<p>Base: <input type="text" id="base1" value="90" /></p>
<p>Multiple: <input type="text" id="multiple1" value="3" /></p>
<p class="hp" style="display:none">HP: <input type="text" id="hp1" value="350" /></p>
<p>Damage: <span id="damage1"></span></p>
<button type="button" class="calc-button" data-stats="1">Calculate!</button>
</div>
<div id="second-stats" class="stats-menu">
<p>Level: <input type="text" id="level2" value="100" /></p>
<p>Attack: <input type="text" id="attack2" value="350" /></p>
<p>Defense: <input type="text" id="defense2" value="350" /></p>
<p>Base: <input type="text" id="base2" value="90" /></p>
<p>Multiple: <input type="text" id="multiple2" value="3" /></p>
<p class="hp" style="display:none">HP: <input type="text" id="hp2" value="350" /></p>
<p>Damage: <span id="damage2"></span></p>
<button type="button" class="calc-button" data-stats="2">Calculate!</button>
</div>
<p>Note: multiple is STAB/Type multiplier</p>
<p id="show-hp-label">Show HP: </p><input type="checkbox" id="show-hp-checkbox" />
<h3>Random Number Generator</h3>
<p>Number (1-100): <span id="number"></span></p>
<button type="button" id="random-button">Generate!</button>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.3.js"></script>
<script src="http://dimitriwalters.github.io/randomit/randomit.min.js"></script>
<script type="text/javascript" src="scripts/main.js"></script>
</body>
</html>