-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollsim.html
56 lines (55 loc) · 2.64 KB
/
rollsim.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Miza's GBF Resources</title>
<meta name="title" content="Miza's GBF Resources">
<meta name="description" content="Miza's GBF Resources">
<meta name="theme-color" content="#5217b0">
<meta property="og:site_name" content="Github">
<meta property="og:type" content="website">
<meta property="og:url" content="https://mizagbf.github.io/">
<meta property="og:title" content="Miza's GBF Resources">
<meta property="og:description" content="Miza's GBF Resources">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://mizagbf.github.io/">
<meta property="twitter:title" content="Miza's GBF Resources">
<meta property="twitter:description" content="Miza's GBF Resources">
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/rollsim.css">
<script src="js/clock.js"></script>
<script src="js/rollsim.js"></script>
</head>
<body>
<a href="index.html" class="main-link"><div id="header-bg"><h1><img src="assets/lyria.png" class="title-icon"> Miza's GBF Resources<br><img src="assets/clock.png" id="clock-icon"><div id="clock"></div></h1></div></a>
<h2>
<div class="category-title"><img src="assets/spark.png" class="cat-icon"> <b>Gacha Simulator</b></div>
<div class="category">
<select id="roll-count">
<option value="1">1</option>
<option value="10" selected="selected">10</option>
<option value="50">50</option>
<option value="100">100</option>
<option value="150">150</option>
<option value="200">200</option>
<option value="250">250</option>
<option value="300">300</option>
</select>
<label for="roll-count">Rolls</label>
<input type="checkbox" id="legfest" name="legfest">
<label for="legfest">6%?</label>
<input type="checkbox" id="rateup" name="legfest">
<label for="rateup">Rate up?</label>
<input type="text" id="rateup-value" placeholder="%" value="0.6">
<label for="rateup-value">% Rate up Sum</label>
<button id="sim-start" type="button" onclick="generate()">Go</button>
<button id="sim-reset" type="button" onclick="reset_cost()">Reset</button>
</div>
<div id="sim-result">
</div>
<div id="sim-cost">
</div>
</h2>
</body>
</html>