-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathindex.html
67 lines (58 loc) · 2.95 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
<html>
<head>
<title>LttP Item Tracker</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css" type="text/css">
<script src="script/items.js"></script>
<script src="script/chests.js"></script>
<script src="script/main.js"></script>
</head>
<body>
<div id='layoutdiv'>
<div id='itemdiv' class='itemdiv'>
</div>
<div id='mapdiv' class='mapdiv'>
</div>
</div>
<div width='100%' id="caption" align='center'>
 
</div>
<!-- Setting panel-->
<button id='settingsbutton' type='button' onclick='showSettings(this)'>🔧</button>
<fieldset id='settings' class='settings'>
<legend>Settings</legend>
<fieldset>
<legend>Item Tracker</legend>
<button type="button" onclick="EditMode()">Edit Mode</button>
<br>
Size<input type="range" name='itemdivsize' value='100' max='200' min='1' onchange="setZoom('itemdiv', this)">
<span id='itemdivsize'>100%</span><br>
<fieldset>
<legend>Dungeon Display</legend>
<input type="checkbox" name="showchest" checked='true' onchange="showChest(this)">Chests
<input type="checkbox" name="showcrystal" checked='true' onchange="showCrystal(this)">Prizes
<input type="checkbox" name="showmedallion" checked='true' onchange="showMedallion(this)">Medals<br>
</fieldset>
</fieldset>
<fieldset>
<legend>Map Tracker</legend>
<input type="checkbox" name="showmap" checked='true' onchange="showTracker('mapdiv', this)">Enabled<br>
Size<input type="range" name='mapdivsize' value='100' max='200' min='1' onchange="setZoom('mapdiv', this)">
<span id='mapdivsize'>100%</span><br>
Position:
<input type='radio' name='mapposition' value='Below' checked='true' onclick="setOrder(true)">Below
<input type='radio' name='mapposition' value='Side' onclick="setOrder(false)">Side<br>
Orientation:
<input type='radio' name='maporientation' value='Horizontal' checked='true' onclick="setMapOrientation(false)">Horizontal
<input type='radio' name='maporientation' value='Verical' onclick="setMapOrientation(true)">Vertical<br>
</fieldset>
</fieldset>
<table id='itemconfig' class='itemconfig' style='display:none'></table>
<script>
init();
</script>
<footer style='bottom:0; width:100%; text-align: center; position: absolute; color:grey'>Lttp Item Randomizer v1.0 -
TestRunner (Based on <a href="https://www.twitch.tv/crossproduct">Stoop Cross Cheet 4.0</a>)
</footer>
</body>
</html>