-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdps_calculator.html
More file actions
86 lines (81 loc) · 4.37 KB
/
dps_calculator.html
File metadata and controls
86 lines (81 loc) · 4.37 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Wynncraft DPS calculator</title>
<meta name="keywords" content="Portfolio, Antimatter Dimensions, Android, App, Game, Privacy Policy">
<meta name="description" content="My Portfolio">
<meta name="author" content="Jakub Kajfosz">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/index.css" media="screen,projection" />
<link href="css/materialdesignicons.min.css" media="all" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#f5f6fa">
<link href="https://fonts.googleapis.com/css?family=Saira+Semi+Condensed:500,600,700" rel="stylesheet">
<!-- If you want Google Analytics, do some Google searching, and pop it here. -->
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div style="padding-left: 2em; width:80%; padding-top: 1em">
<table id="example" class="display">
<tr>
<td><label for="lowerBound">Lower bound:</label></td>
<td><input type="text" id="lowerBound" oninput="onInput();" style="width:90px"><br></td>
<td style="width:30px"></td>
<td><label for="lowerBound2">Lower bound:</label></td>
<td><input type="text" id="lowerBound2" oninput="onInput2();" style="width:90px"><br></td>
</tr>
<tr>
<td><label for="upperBound">Upper bound:</label></td>
<td><input type="text" id="upperBound" oninput="onInput();" style="width:90px"><br></td>
<td style="width:30px"></td>
<td><label for="upperBound2">Upper bound:</label></td>
<td><input type="text" id="upperBound2" oninput="onInput2();" style="width:90px"><br></td>
</tr>
<tr>
<td><label for="attackSpeed">Attack speed:</label></td>
<td>
<select id="attackSpeed" style="width:98px" oninput="onInput();">
<option value="0.51">Super Slow</option>
<option value="0.83">Very Slow</option>
<option value="1.5">Slow</option>
<option value="2.05" selected="true">Normal</option>
<option value="2.5">Fast</option>
<option value="3.1">Very Fast</option>
<option value="4.3">Super Fast</option>
</select>
</td>
<td style="width:30px"></td>
<td><label for="attackSpeed2">Attack speed:</label></td>
<td>
<select id="attackSpeed2" style="width:98px" oninput="onInput2();">
<option value="0.51">Super Slow</option>
<option value="0.83">Very Slow</option>
<option value="1.5">Slow</option>
<option value="2.05" selected="true">Normal</option>
<option value="2.5">Fast</option>
<option value="3.1">Very Fast</option>
<option value="4.3">Super Fast</option>
</select>
</td>
</tr>
<tr>
<td><label for="dps">Average DPS:</label></td>
<td><div id="dps">NaN</div></td>
<td style="width:30px"></td>
<td><label for="dps2">Average DPS:</label></td>
<td><div id="dps2">NaN</div></td>
</tr>
</table>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script type="text/javascript" src="js/dps_calculator.js"></script>
</body>
</html>