-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (61 loc) · 2.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>D4 Toolbox</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="css/main.css" />
<!-- JS -->
<script type="text/javascript" defer src="./js/jquery-3.7.1.min.js"></script>
<script type="text/javascript" defer src="./json/FracturedPeaksAltars.js"></script>
<script type="text/javascript" defer src="./json/ScosglenAltars.js"></script>
<script type="text/javascript" defer src="./js/main.js"></script>
</head>
<body>
<main>
<form id="UI">
<div class="button-container" id="topButtonBar">
<input type="button" id="saveStorageID" value="Save Data" onclick="saveStorage()" />
<input type="button" id="clearStorageID" value="Clear Data" onclick="clearStorage()" />
</div>
<br>
<hr>
<button type="button" class="accordion"><img src="img/icons/icon_waypoint.webp"></img></button>
<hr>
<button type="button" class="accordion"><img src="img/icons/icon_lilithAltar.webp"></img></button>
<div class="accordion-container">
<!-- Overlay -->
<div id="display-data"></div>
<div id="overlay"></div>
<div id="overlayContent">
<img id="bigImg" src="" alt="" />
</div>
<!-- Region Buttons -->
<div class="button-container">
<button type="button" id="fracturedPeaksAltarMap">Fractured Peaks</button>
<button type="button" id="scosglenAltarMap">Scosglen</button>
<button type="button" id="drySteppesAltarMap">Dry Steppes</button>
<button type="button" id="hawezarAltarMap">Hawezar</button>
<button type="button" id="kehjistanAltarMap">Kehjistan</button>
</div>
<!-- JSON Data for Each Region -->
<div id="fracturedPeaksLilithAltars"></div>
<div id="scosglenLilithAltars"></div>
<div id="drySteppesLilithAltars"></div>
<div id="hawezarLilithAltars"></div>
<div id="kehjistanLilithAltars"></div>
</div>
<hr>
<button type="button" class="accordion"><img src="img/icons/icon_cellar.webp"></img></button>
<hr>
<button type="button" class="accordion"><img src="img/icons/icon_dungeon.webp"></img></button>
<hr>
<div class="colorTheme-container">
<!-- <button type="button" class="theme" id="changeTheme" onclick="changeTheme()">Change Theme</button> -->
<button type="button" class="theme" id="changeThemeID">Change Theme</button>
</div>
</form>
</main>
</body>
</html>