forked from hppeng-wynn/hppeng-wynn.github.io
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdps_vis.html
More file actions
80 lines (78 loc) · 3.26 KB
/
dps_vis.html
File metadata and controls
80 lines (78 loc) · 3.26 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
<!DOCTYPE html>
<html scroll-behavior="smooth" style="height: 100%">
<head>
<!-- nunito font, copying wynndata -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/styles.css">
<link rel="stylesheet" href="/css/article.css">
<link rel="icon" href="./media/memes/agony.png">
<link rel="manifest" href="manifest.json">
<title>Base DPS Visualizer</title>
</head>
<body class="all" style="height: 95%; overflow: auto; display: flex; flex-direction: column">
<header class="header nomarginp">
<div class="headerleft" id = "headerleft">
</div>
<div class="headercenter" id = "headercenter">
<div>
<p class="itemp" id="header">Base DPS Visualization</p>
</div>
</div>
<div class="headerright" id = "headerright">
</div>
</header>
<table style="padding-bottom:20px">
<tr>
<td>
<button class = "button-narrow" id = "wand" onclick = "setData('wand')">
wands
</button>
</td>
<td>
<button class = "button-narrow" id = "spear" onclick = "setData('spear')">
spears
</button>
</td>
<td>
<button class = "button-narrow" id = "dagger" onclick = "setData('dagger')">
daggers
</button>
</td>
<td>
<button class = "button-narrow" id = "bow" onclick = "setData('bow')">
bows
</button>
</td>
<td>
<button class = "button-narrow" id = "relik" onclick = "setData('relik')">
reliks
</button>
</td>
<td>
</td>
<td>
<button class = "button-narrow" id = "powderToggle" onclick = "togglePowder()">
prepowder (true)
</button>
</td>
<td>
<label class = "button-narrow" for="versionDropdown">Change Version</label>
<select class = "button-narrow" id = "versionDropdown" onchange="changeVersion()">
</select>
</td>
</tr>
</table>
<p id="info">
SELECTED ITEM TYPE: wand
</p>
<script type-"text/javascript" src="../js/redirect_fork.js"></script>
<script src="https://d3js.org/d3.v7.js"></script>
<script type="text/javascript" src="/js/utils.js"></script>
<script type="text/javascript" src="/js/loadheader.js"></script>
<script type="text/javascript" src="/js/icons.js"></script>
<script type="text/javascript" src="/js/loader.js"></script>
<script type="text/javascript" src="/js/load_item.js"></script>
<script type="text/javascript" src="/js/debug/dps_vis.js"></script>
</body>
</html>