-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (71 loc) · 4.24 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
<!DOCTYPE html>
<html>
<head>
<title>Mordhau Weapon Stats</title>
<meta name="description" content="Mordhau Weapon Stats comparison website">
<meta name="keywords" content="mordhau,weapon,stats,comparison">
<meta name="author" content="FuryBaguette">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<link rel="icon" href="favicon.ico" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-141261841-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-141261841-2');
</script>
<link href="https://fonts.googleapis.com/css?family=Roboto|Ubuntu&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js" integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU=" crossorigin="anonymous"></script>
<script src="js/weaponstats.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://kit.fontawesome.com/f8f38d9bc7.js"></script>
</head>
<body>
<div id="container">
<header>
<img class="logo" src="images/logo-transparent.png"></img>
<h1>Mordhau Weapon Stats</h1>
<div class="links">
<a href="https://github.com/FuryBaguette/MordhauWeaponStats" target="_blank" class="tooltip"><span class="tooltiptext">Github</span><i class="fab fa-github"></i></a>
<a href="https://www.buymeacoffee.com/FuryBaguette" target="_blank" class="tooltip"><span class="tooltiptext">Donate</span><i class="fas fa-donate"></i></a>
</div>
</header>
<div id="content">
<div id="leftSide">
<div class="overlay"></div>
<div class="searchDiv">
<input type="search" id="searchName" placeholder="Search by name">
<select id="attackTypeSelect">
<option value="">--Attack Type--</option>
<option value="Strike">Strike</option>
<option value="Thrust">Thrust</option>
<option value="Projectile">Projectile</option>
</select>
<select id="typeSelect">
<option value="">--Type--</option>
<option value="One Handed">One Handed</option>
<option value="Two Handed">Two Handed</option>
<option value="One/Two Handed">One/Two Handed</option>
</select>
<select id="altModeSelect">
<option value="">--Alt Mode--</option>
<option value="On">On</option>
<option value="Off">Off</option>
<option value="Projectile">Projectile</option>
</select>
</div>
<div class="keepLong"></div>
</div>
<div id="rightSide">
<div class="overlay"></div>
<span class="howto">Click on weapons on the left to compare them, click again to remove from the compare list. In green is shown the overall best weapon, in red is shown the overall worst weapon for each attributes</span>
<div class="selectedItemsContainer"></div>
</div>
</div>
<footer>Made by <a href="https://github.com/FuryBaguette">FuryBaguette</a> - Still a Work In Progress - Thanks to <a href="https://docs.google.com/spreadsheets/d/1HXS_aF9CKeGKg6OecwCw3WobZWcTjDkp_4ipN1vnyVk/">JON影's spreadsheet</a></footer>
</div>
</body>
</html>