WHAT THE FUCK IM GOING TO EXPLODE

This commit is contained in:
MeowcaTheoRange 2023-11-17 14:46:53 -06:00
parent 57505591b0
commit e7c5f10af1

View file

@ -5,8 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>HexFlagGen</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://cdn.abtmtr.link/cdn/css/normal.css" />
<link rel="stylesheet" href="https://cdn.abtmtr.link/cdn/css/normal.css" />
<link rel="stylesheet" href="styles/normal.css" />
<style>
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100;200;300;400;500;600;700;800;900&display=swap");
@ -22,14 +21,14 @@
}
* {
transition: background-color 0.125s, color 0.125s, opacity 0.125s;
transition: background-color 0.125s, color 0.125s;
}
</style>
</head>
<body>
<section>
<h1>HexFlagGen</h1>
<label
<label for="size_width"
><input
type="number"
style="width: 8ch"
@ -49,29 +48,30 @@
Base style
</label>
<p>by <a href="https://abtmtr.link/">MeowcaTheoRange</a></p>
<p>Make a Scott The Woz thumbnail out of any Steam game.</p>
<p>
Welcome, here you can make a flag out of the hexadecimal bytes of your
choice!
</p>
</section>
<hr />
<section>
<label for="data">Generator string</label><br />
<input
type="number"
id="steam_game"
style="width: 8ch"
min="10"
value="620"
/>
<label for="steam_game">Steam Game ID</label><br />
type="text"
id="data"
value="5BCEFAF5A9B8FFFFFFF5A9B85BCEFABA53"
style="width: 100%"
/><br />
<button id="generateButton">Generate!</button>
</section>
<section>
<label for="scott_index">Extras</label><br />
<input
type="number"
id="scott_index"
id="size_width"
style="width: 8ch"
min="0"
max="9"
value="0"
max="3000"
value="300"
/>
<label for="size_width">Width (px)</label><br />
<input
@ -84,14 +84,17 @@
/>
<label for="size_height">Height (px)</label><br />
<select id="flag_type">
<option value="vert" selected>Vertical</option>
<option value="horiz">Horizontal</option>
<option value="vert" selected>Vertical</option>
</select>
<label for="align">Background Alignment</label>
<label for="flag_type">Flag type</label>
</section>
<hr />
<section>
<canvas id="canvas" width="1280" height="720"></canvas>
<p>
Hex: <code><span id="hexdisplay">...</span></code>
</p>
<canvas id="canvas" width="300" height="200"></canvas>
</section>
<script src="scripts/index.js"></script>
</body>