GDBrowser/html/gauntlets.html
GDColon ea5c732c75 Assets overhaul + demon list + several misc updates
I held back on pushing this since I wanted to wait for Rob to unblock level downloading, but it's probably gonna be a while since it's (likely) related to an unlisted level exploit

Anyways I totally overhauled how the assets work, and you can also browse through all the files by going to gdbrowser.com/assets, because why not

I also made many other changes and fixes during this timespan including the addition of the demon list, optimized custom lists along with a ?page param, and other random stuff that needed touching up

- Removed Herobrine
2021-01-04 10:21:58 -05:00

48 lines
No EOL
1.9 KiB
HTML

<head>
<title>Gauntlets</title>
<meta charset="utf-8">
<link href="../assets/css/browser.css" type="text/css" rel="stylesheet">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-135255146-3"></script><script>window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'UA-135255146-3');</script>
<link rel="icon" href="../assets/gauntlet.png">
<meta id="meta-title" property="og:title" content="Gauntlets">
<meta id="meta-desc" property="og:description" content="Because RobTop wanted to leave behind the monstrosity that is Map Packs.">
<meta id="meta-image" name="og:image" itemprop="image" content="https://gdbrowser.com/assets/gauntlet.png">
</head>
<body class="levelBG darkBG" style="overflow-y:auto;" onbeforeunload="saveUrl()">
<div id="everything" class="center" style="width: 100%; height: 100%;">
<div style="position:absolute; top: 2%; left: -1.95%; width: 10%; height: 25%; pointer-events: none">
<img class="gdButton yesClick" id="backButton" src="../assets/back.png" height="30%" onclick="backButton()">
</div>
<div class="center" width="100%" style="margin-top: 2.5%; margin-bottom: 1%;">
<img src="../assets/gauntlets.png" width="50%">
</div>
<div id="gauntletList">
<br>
</div>
<br>
</div>
</body>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script async type="text/javascript" src="../sizecheck.js"></script>
<script>
let gauntlets = ["Fire", "Ice", "Poison", "Shadow", "Lava", "Bonus", "Chaos", "Demon", "Time", "Crystal", "Magic", "Spike", "Monster", "Doom", "Death"]
gauntlets.forEach((x, y) => {
$('#gauntletList').append(`
<div class="gauntlet">
<a href="../search/level?gauntlet=${y + 1}">
<img src="../assets/gauntlets/${x.toLowerCase()}.png" height="300%"><br>
<h3 class="gauntletText"">${x}<br>Gauntlet</h3></div></a>`)
})
</script>