-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (42 loc) · 2.45 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
<!DOCTYPE html>
<html>
<head>
<title>Mee6 Calculator</title>
<script type="text/javascript" src="calc.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="wrapper">
<header class="titles">
<h1 class="title generic-font"><a class="mee6-link" href="https://mee6.xyz">mee6.xyz</a> Level Calculator</h1>
<h2 class="sub-title generic-font">Calculate messages needed to send <i>(for every minute)</i> in order to reach a level</h2>
</header>
<div class="input-fields">
<input type="number" class="input-box generic-font" id="desired-level" placeholder="Desired Level">
<input type="number" class="input-box generic-font" id="current-xp" placeholder="Current XP">
<a class="button-calculate generic-font" onclick="calculate()" href="#result">Calculate</a>
</div>
<div class="results" id="result">
<div class="result-main">
<h2 class="result-title generic-font">Result: Avg. of <span id="result-average">_</span> messages</h2>
<span class="result-sub-title generic-font"> required to send until you reach that level.</span>
<!-- <span class="sub-title">Average of messages left</span> -->
<span class="result-xp-left generic-font">(You need another <span id="result-xp-needed">_</span> XP)</span>
<br>
<span class="generic-font"><strong>NOTE:</strong> You can only gain XP once for every minute.</span>
</div>
<div class="result-max-min-messages">
<span>If you're lucky, you only need to send <span id="result-minimum-messages-requirement">_</span> messages to level up!</span>
<span>If you're unlucky, you need to write a whooping <span id="result-maximum-messages-requirement">_</span> messages.</span>
</div>
</div>
<div class="disclaimer">
This site is not affiliated with <a href="https://mee6.xyz/">mee6.xyz</a><br>
View the source-code on <a href="https://github.com/Lounge-Lizard-dev/Lvl-xp-calculator">GitHub</a><br>
Copyright © 2021 Lounge Lizard (<a href="https://lounge-lizard-dev.gitub.io">vladde.net</a>)
</div>
</div>
</body>
</html>